Repository: smichelotti/Ionic2Course Branch: master Commit: 552821af43fe Files: 6 Total size: 193.3 KB Directory structure: gitextract_ei1mxy2s/ ├── README.md ├── data-files/ │ ├── elite-schedule-firebase-data.json │ └── readme.md ├── image-files/ │ └── readme.md └── sql-storage/ ├── readme.md └── user-settings.service.ts ================================================ FILE CONTENTS ================================================ ================================================ FILE: README.md ================================================ # Ionic 2 Course This course is (slightly) out of date. ### **The latest version of the code (for 3.13.2 release) can be downloaded at [this link here](http://cdn.stevemichelotti.com/code/elite-schedule-3.13.2.zip).** This repository contains all the information you need to get your code up-to-date. The course was built using the final beta for Ionic 2. There were a few key changes when Ionic 2 released the first RC which are documented here. All of the code for the course runs fine if you are using that final beta. The required tweaks are documented below for RC and beyond. **Also, Pluralsight Plus subscribers can download a complete code sample of the course which has been updated for the latest Ionic 2 release.** ## Table of Contents 1. [Installation](#installation) 1. [Project Structure](#project-structure) 1. [Buttons](#buttons) 1. [Theme Colors](#theme-colors) 1. [Lifecycle Events](#lifecycle-events) 1. [Incorporating Third-Party Libraries - lodash](#incorporate-lodash) 1. [Custom CSS](#custom-css) 1. [Storage](#storage) 1. [SQLite](#sqlite) 1. [Mapping](#mapping) 1. [Miscellaneous](#miscellaneous) ### Installation In the course, Ionic 2 was installed with: ```shell npm install -g ionic@beta ``` As of the RC release, you can install Ionic 2 like this: ```shell npm install -g ionic ``` If there is any doubt, see the [Installing Ionic](https://ionicframework.com/docs/v2/getting-started/installation/) section of the Ionic 2 docs. ### Project Structure As of the RC release, the project structure is slightly different than what you'll see in the course. With `@NgModule` being introduced, the top level folder for your source code is now called `src` instead of `app`. All of the files related to the root app component (in conjunction with `NgModule`) are now stored in of sub-folder of `src` called `app`. The `assets` directory has also been moved into `src` as a sub-directory. #### Important Note on NgModule: Now that the RC release uses `NgModule`, each new page you create must be added the `declarations` and `entryComponents` properties in the `app.module.ts` file. For example: ``` @NgModule({ declarations: [ MyApp, GamePage, MapPage, MyTeamsPage, StandingsPage, TeamDetailPage, TeamHomePage, TeamsPage, TournamentsPage ], imports: [ IonicModule.forRoot(MyApp) ], bootstrap: [IonicApp], entryComponents: [ MyApp, GamePage, MapPage, MyTeamsPage, StandingsPage, TeamDetailPage, TeamHomePage, TeamsPage, TournamentsPage ], providers: [] }) export class AppModule {} ``` ### Buttons Previously (as you see in the course), we could just refer to a button like this: ```html ``` Now we need to use `ion-button` attribute like this: ```html ``` The `icon-only` attribute is also required for "icon only" buttons. Also, Floating Action Buttons (FAB) are now a distinct element. See [FABs](https://ionicframework.com/docs/v2/components/#fabs) section of docs for details. See [New Behavior of Button](https://github.com/driftyco/ionic/blob/master/CHANGELOG.md#new-behavior-of-button) section in Ionic 2 RC change log for more info. ### Theme Colors Previously we could add theme colors like "primary" adding the attribute directly like this: ```html ``` Now we use a `color` attribute. This makes dynamic scenarios easier. ```html ``` There are numerous components this applies to (e.g., buttons, badges, tabs, etc.). See [Component Colors](https://github.com/driftyco/ionic/blob/master/CHANGELOG.md#component-colors) in Ionic 2 RC0 change log for more info. ### Lifecycle Events A few Lifecycle Events were renamed. Mostly importantly, `ionViewLoaded` was renamed to `ionViewDidLoad`. See [Lifecycle Events Renamed](https://github.com/driftyco/ionic/blob/master/CHANGELOG.md#lifecycle-events-renamed) section of Ionic 2 RC0 change log for more info. #### Angular 2 HttpModule Related to Angular 2 (not directly an Ionic change): In a previous version of Angular (i.e., the one used when recording the course), the import statement that was used was: ``` import { HTTP_PROVIDERS } from '@angular/http'; ``` and specified in the list of `providers`. This has been changed to: ``` import { HttpModule } from '@angular/http'; ``` and specified in the list of `imports`. ### Incorporate Lodash The guidance for adding third-party libraries (like lodash) to your project has changed slightly. Here are the steps: ```shell npm install lodash --save ``` ```shell npm install @types/lodash --save-dev ``` Import statement at top of files now now look like this: ``` import _ from 'lodash'; ``` ### Custom CSS For any components where you want custom styling, you should add a `selector` attribute to scope your CSS: ``` @Component({ selector: 'page-about', templateUrl: 'about.html' }) ``` Also, you do **not** need to add an `@import` to the `app.core.scss` file any more. See step #15 in the [Steps to Upgrade](https://github.com/driftyco/ionic/blob/master/CHANGELOG.md#steps-to-upgrade-to-rc0) section of the Ionic 2 RC change log. ### Storage In the RC release, storage was moved out of the core Ionic framework into a separate library called `@ionic/storage`. For the most part, the concepts are the same. The code samples in the course downloads have been updated for its usage. Basic usage is shown in the [Storage](https://github.com/driftyco/ionic/blob/master/CHANGELOG.md#storage) section of the Ionic 2 RC change log. ### SQLite The SqlStorage component was removed between the final Ionic 2 beta and the Ionic 2 RC release. Please see the [sql-storage directory](https://github.com/smichelotti/Ionic2Course/tree/master/sql-storage) for an example of how the implement the `user-settings.service.ts` (shown in the course) using the [Ionic Native SQLite plugin](https://ionicframework.com/docs/v2/native/sqlite/) directly. ### Mapping Incorporating [Angular 2 Google Maps (AGM)]() into an Ionic 2 app has changed slightly since the Ionic beta. Please see [this blog post](http://stevemichelotti.com/integrate-angular-2-google-maps-into-ionic-2/) on how to incorporate AGM into the latest version of Ionic 2. Additionally, here is a [Github repository](https://github.com/smichelotti/ionic2-google-maps-test) with the full working code just for Ionic 2 and AGM. ### Miscellaneous #### Item Divider Side note: there is a bug in the RC release where the `color` attribute applied to an `` doens't work. This issue has been identified and is being address by the Ionic team in [issue #8376](https://github.com/driftyco/ionic/issues/8376). ================================================ FILE: data-files/elite-schedule-firebase-data.json ================================================ { "tournaments": [ { "id": "3dd50aaf-6b03-4497-b074-d81703f07ee8", "name": "Cager Classic" }, { "id": "98c6857e-b0d1-4295-b89e-2d95a45437f2", "name": "Holiday Hoops Challenge" }, { "id": "46ebd526-8839-476a-9ba0-8a9b2c07f3c3", "name": "Summer Showdown" }, { "id": "89e13aa2-ba6d-4f55-9cc2-61eba6172c63", "name": "March Madness Tournament" } ], "tournaments-data": { "3dd50aaf-6b03-4497-b074-d81703f07ee8": { "tournament": { "name": "Cager Classic", "id": "3dd50aaf-6b03-4497-b074-d81703f07ee8" }, "games": [ { "id": 7969, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "DC Premier", "team1Id": 825, "team2": "Severn Elite", "team2Id": 821, "team1Score": "", "team2Score": "", "time": "2016-07-16T08:00:00" }, { "id": 7970, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "MADE Elite", "team1Id": 828, "team2": "Reisterstown Wolfpack", "team2Id": 826, "team1Score": "", "team2Score": "", "time": "2016-07-16T08:00:00" }, { "id": 7971, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Supreme", "team1Id": 813, "team2": "Team Takeover", "team2Id": 818, "team1Score": "", "team2Score": "", "time": "2016-07-16T08:00:00" }, { "id": 7972, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "DC Assault", "team1Id": 814, "team2": "Sharks", "team2Id": 817, "team1Score": "", "team2Score": "", "time": "2016-07-16T08:00:00" }, { "id": 7973, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "E-City Ballers", "team1Id": 816, "team2": "Savage Eagles", "team2Id": 820, "team1Score": "", "team2Score": "", "time": "2016-07-16T09:00:00" }, { "id": 7974, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "6th Man Warriors", "team1Id": 823, "team2": "Team Glory", "team2Id": 819, "team1Score": "", "team2Score": "", "time": "2016-07-16T09:00:00" }, { "id": 7975, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "HC Elite", "team1Id": 822, "team2": "Maryland 3D", "team2Id": 827, "team1Score": "", "team2Score": "", "time": "2016-07-16T09:00:00" }, { "id": 7976, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Force Attack", "team1Id": 815, "team2": "Maryland Playmakers", "team2Id": 824, "team1Score": "", "team2Score": "", "time": "2016-07-16T09:00:00" }, { "id": 7977, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "DC Assault", "team1Id": 814, "team2": "MADE Elite", "team2Id": 828, "team1Score": "", "team2Score": "", "time": "2016-07-16T10:00:00" }, { "id": 7978, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Stars", "team1Id": 812, "team2": "Sharks", "team2Id": 817, "team1Score": "", "team2Score": "", "time": "2016-07-16T10:00:00" }, { "id": 7979, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Supreme", "team1Id": 813, "team2": "Severn Elite", "team2Id": 821, "team1Score": "", "team2Score": "", "time": "2016-07-16T10:00:00" }, { "id": 7980, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "6th Man Warriors", "team1Id": 823, "team2": "Savage Eagles", "team2Id": 820, "team1Score": "", "team2Score": "", "time": "2016-07-16T11:00:00" }, { "id": 7981, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Team Glory", "team1Id": 819, "team2": "Maryland Playmakers", "team2Id": 824, "team1Score": "", "team2Score": "", "time": "2016-07-16T11:00:00" }, { "id": 7982, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "DC Premier", "team1Id": 825, "team2": "HC Elite", "team2Id": 822, "team1Score": "", "team2Score": "", "time": "2016-07-16T11:00:00" }, { "id": 7983, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Team Takeover", "team1Id": 818, "team2": "Maryland 3D", "team2Id": 827, "team1Score": "", "team2Score": "", "time": "2016-07-16T11:00:00" }, { "id": 7984, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Baltimore Stars", "team1Id": 812, "team2": "Reisterstown Wolfpack", "team2Id": 826, "team1Score": "", "team2Score": "", "time": "2016-07-16T12:00:00" }, { "id": 7989, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "E-City Ballers", "team1Id": 816, "team2": "Force Attack", "team2Id": 815, "team1Score": "", "team2Score": "", "time": "2016-07-16T12:00:00" }, { "id": 7990, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Sharks", "team1Id": 817, "team2": "MADE Elite", "team2Id": 828, "team1Score": "", "team2Score": "", "time": "2016-07-16T12:00:00" }, { "id": 7991, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Supreme", "team1Id": 813, "team2": "Maryland 3D", "team2Id": 827, "team1Score": "", "team2Score": "", "time": "2016-07-16T13:00:00" }, { "id": 7993, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "6th Man Warriors", "team1Id": 823, "team2": "Maryland Playmakers", "team2Id": 824, "team1Score": "", "team2Score": "", "time": "2016-07-16T13:00:00" }, { "id": 7986, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Team Takeover", "team1Id": 818, "team2": "DC Premier", "team2Id": 825, "team1Score": "", "team2Score": "", "time": "2016-07-16T13:00:00" }, { "id": 7987, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Severn Elite", "team1Id": 821, "team2": "HC Elite", "team2Id": 822, "team1Score": "", "team2Score": "", "time": "2016-07-16T13:00:00" }, { "id": 7988, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Savage Eagles", "team1Id": 820, "team2": "Force Attack", "team2Id": 815, "team1Score": "", "team2Score": "", "time": "2016-07-16T14:00:00" }, { "id": 7994, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Reisterstown Wolfpack", "team1Id": 826, "team2": "DC Assault", "team2Id": 814, "team1Score": "", "team2Score": "", "time": "2016-07-16T14:00:00" }, { "id": 7992, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Stars", "team1Id": 812, "team2": "MADE Elite", "team2Id": 828, "team1Score": "", "team2Score": "", "time": "2016-07-16T14:00:00" }, { "id": 7985, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Team Glory", "team1Id": 819, "team2": "E-City Ballers", "team2Id": 816, "team1Score": "", "team2Score": "", "time": "2016-07-16T14:00:00" }, { "id": 7995, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Maryland 3D", "team1Id": 827, "team2": "DC Premier", "team2Id": 825, "team1Score": "", "team2Score": "", "time": "2016-07-16T15:00:00" }, { "id": 7997, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Severn Elite", "team1Id": 821, "team2": "Team Takeover", "team2Id": 818, "team1Score": "", "team2Score": "", "time": "2016-07-16T15:00:00" }, { "id": 7998, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Supreme", "team1Id": 813, "team2": "HC Elite", "team2Id": 822, "team1Score": "", "team2Score": "", "time": "2016-07-16T15:00:00" }, { "id": 7999, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Maryland Playmakers", "team1Id": 824, "team2": "E-City Ballers", "team2Id": 816, "team1Score": "", "team2Score": "", "time": "2016-07-16T16:00:00" }, { "id": 8000, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Savage Eagles", "team1Id": 820, "team2": "Team Glory", "team2Id": 819, "team1Score": "", "team2Score": "", "time": "2016-07-16T16:00:00" }, { "id": 8002, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Baltimore Stars", "team1Id": 812, "team2": "DC Assault", "team2Id": 814, "team1Score": "", "team2Score": "", "time": "2016-07-16T16:00:00" }, { "id": 7996, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "6th Man Warriors", "team1Id": 823, "team2": "Force Attack", "team2Id": 815, "team1Score": "", "team2Score": "", "time": "2016-07-16T16:00:00" }, { "id": 8001, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Reisterstown Wolfpack", "team1Id": 826, "team2": "Sharks", "team2Id": 817, "team1Score": "", "team2Score": "", "time": "2016-07-16T17:00:00" } ], "locations": { "loc-1": { "name": "Meadowbrook Ct. 1", "latitude": 39.248958, "longitude": -76.822041 }, "loc-2": { "name": "Meadowbrook Ct. 2", "latitude": 39.248958, "longitude": -76.822041 }, "loc-3": { "name": "Meadowbrook Ct. 3", "latitude": 39.248958, "longitude": -76.822041 }, "loc-4": { "name": "Meadowbrook Ct. 4", "latitude": 39.248958, "longitude": -76.822041 } }, "standings": [ { "teamId": 812, "teamName": "Baltimore Stars", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 814, "teamName": "DC Assault", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 828, "teamName": "MADE Elite", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 826, "teamName": "Reisterstown Wolfpack", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 817, "teamName": "Sharks", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 813, "teamName": "Baltimore Supreme", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 825, "teamName": "DC Premier", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 822, "teamName": "HC Elite", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 827, "teamName": "Maryland 3D", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 821, "teamName": "Severn Elite", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 818, "teamName": "Team Takeover", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 823, "teamName": "6th Man Warriors", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 816, "teamName": "E-City Ballers", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 815, "teamName": "Force Attack", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 824, "teamName": "Maryland Playmakers", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 820, "teamName": "Savage Eagles", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 819, "teamName": "Team Glory", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" } ], "teams": [ { "id": 812, "name": "Baltimore Stars", "coach": "James", "division": "6th grade" }, { "id": 814, "name": "DC Assault", "coach": "Bartlett", "division": "6th grade" }, { "id": 828, "name": "MADE Elite", "coach": "Johnson", "division": "6th grade" }, { "id": 826, "name": "Reisterstown Wolfpack", "coach": "Hightower", "division": "6th grade" }, { "id": 817, "name": "Sharks", "coach": "Smith", "division": "6th grade" }, { "id": 813, "name": "Baltimore Supreme", "coach": "Miller", "division": "7th grade" }, { "id": 825, "name": "DC Premier", "coach": "Davis", "division": "7th grade" }, { "id": 822, "name": "HC Elite", "coach": "Michelotti", "division": "7th grade" }, { "id": 827, "name": "Maryland 3D", "coach": "Brown", "division": "7th grade" }, { "id": 821, "name": "Severn Elite", "coach": "Wilson", "division": "7th grade" }, { "id": 818, "name": "Team Takeover", "coach": "Williams", "division": "7th grade" }, { "id": 823, "name": "6th Man Warriors", "coach": "White", "division": "8th grade" }, { "id": 816, "name": "E-City Ballers", "coach": "Moore", "division": "8th grade" }, { "id": 815, "name": "Force Attack", "coach": "Taylor", "division": "8th grade" }, { "id": 824, "name": "Maryland Playmakers", "coach": "Jackson", "division": "8th grade" }, { "id": 820, "name": "Savage Eagles", "coach": "Anderson", "division": "8th grade" }, { "id": 819, "name": "Team Glory", "coach": "Thomas", "division": "8th grade" } ] }, "98c6857e-b0d1-4295-b89e-2d95a45437f2": { "tournament": { "name": "Holiday Hoops Challenge", "id": "98c6857e-b0d1-4295-b89e-2d95a45437f2" }, "games": [ { "id": 7935, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "MADE Elite", "team1Id": 798, "team2": "Reisterstown Wolfpack", "team2Id": 797, "team1Score": "40", "team2Score": "38", "time": "2016-07-09T08:00:00" }, { "id": 7936, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "DC Premier", "team1Id": 801, "team2": "Severn Elite", "team2Id": 804, "team1Score": "39", "team2Score": "36", "time": "2016-07-09T08:00:00" }, { "id": 7937, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Supreme", "team1Id": 802, "team2": "Team Takeover", "team2Id": 803, "team1Score": "72", "team2Score": "78", "time": "2016-07-09T08:00:00" }, { "id": 7938, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "DC Assault", "team1Id": 795, "team2": "Sharks", "team2Id": 800, "team1Score": "42", "team2Score": "41", "time": "2016-07-09T08:00:00" }, { "id": 7939, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "HC Elite", "team1Id": 805, "team2": "Maryland 3D", "team2Id": 799, "team1Score": "58", "team2Score": "33", "time": "2016-07-09T09:00:00" }, { "id": 7940, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "E-City Ballers", "team1Id": 807, "team2": "Savage Eagles", "team2Id": 806, "team1Score": "21", "team2Score": "25", "time": "2016-07-09T09:00:00" }, { "id": 7944, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Force Attack", "team1Id": 810, "team2": "Maryland Playmakers", "team2Id": 809, "team1Score": "22", "team2Score": "28", "time": "2016-07-09T09:00:00" }, { "id": 7948, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "6th Man Warriors", "team1Id": 808, "team2": "Team Glory", "team2Id": 811, "team1Score": "44", "team2Score": "32", "time": "2016-07-09T09:00:00" }, { "id": 7946, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "DC Assault", "team1Id": 795, "team2": "MADE Elite", "team2Id": 798, "team1Score": "44", "team2Score": "41", "time": "2016-07-09T10:00:00" }, { "id": 7941, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Stars", "team1Id": 796, "team2": "Sharks", "team2Id": 800, "team1Score": "43", "team2Score": "46", "time": "2016-07-09T10:00:00" }, { "id": 7943, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Supreme", "team1Id": 802, "team2": "Severn Elite", "team2Id": 804, "team1Score": "22", "team2Score": "52", "time": "2016-07-09T10:00:00" }, { "id": 7954, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "6th Man Warriors", "team1Id": 808, "team2": "Savage Eagles", "team2Id": 806, "team1Score": "34", "team2Score": "33", "time": "2016-07-09T11:00:00" }, { "id": 7942, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Team Takeover", "team1Id": 803, "team2": "Maryland 3D", "team2Id": 799, "team1Score": "72", "team2Score": "55", "time": "2016-07-09T11:00:00" }, { "id": 7947, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "DC Premier", "team1Id": 801, "team2": "HC Elite", "team2Id": 805, "team1Score": "53", "team2Score": "55", "time": "2016-07-09T11:00:00" }, { "id": 7945, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Team Glory", "team1Id": 811, "team2": "Maryland Playmakers", "team2Id": 809, "team1Score": "22", "team2Score": "23", "time": "2016-07-09T11:00:00" }, { "id": 7949, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Sharks", "team1Id": 800, "team2": "MADE Elite", "team2Id": 798, "team1Score": "22", "team2Score": "27", "time": "2016-07-09T12:00:00" }, { "id": 7951, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Baltimore Stars", "team1Id": 796, "team2": "Reisterstown Wolfpack", "team2Id": 797, "team1Score": "34", "team2Score": "44", "time": "2016-07-09T12:00:00" }, { "id": 7955, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "E-City Ballers", "team1Id": 807, "team2": "Force Attack", "team2Id": 810, "team1Score": "33", "team2Score": "34", "time": "2016-07-09T12:00:00" }, { "id": 7956, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Severn Elite", "team1Id": 804, "team2": "HC Elite", "team2Id": 805, "team1Score": "42", "team2Score": "44", "time": "2016-07-09T13:00:00" }, { "id": 7957, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "6th Man Warriors", "team1Id": 808, "team2": "Maryland Playmakers", "team2Id": 809, "team1Score": "33", "team2Score": "37", "time": "2016-07-09T13:00:00" }, { "id": 7952, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Team Takeover", "team1Id": 803, "team2": "DC Premier", "team2Id": 801, "team1Score": "51", "team2Score": "55", "time": "2016-07-09T13:00:00" }, { "id": 7950, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Supreme", "team1Id": 802, "team2": "Maryland 3D", "team2Id": 799, "team1Score": "41", "team2Score": "44", "time": "2016-07-09T13:00:00" }, { "id": 7953, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Team Glory", "team1Id": 811, "team2": "E-City Ballers", "team2Id": 807, "team1Score": "55", "team2Score": "37", "time": "2016-07-09T14:00:00" }, { "id": 7958, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Reisterstown Wolfpack", "team1Id": 797, "team2": "DC Assault", "team2Id": 795, "team1Score": "33", "team2Score": "52", "time": "2016-07-09T14:00:00" }, { "id": 7960, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Savage Eagles", "team1Id": 806, "team2": "Force Attack", "team2Id": 810, "team1Score": "55", "team2Score": "43", "time": "2016-07-09T14:00:00" }, { "id": 7961, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Stars", "team1Id": 796, "team2": "MADE Elite", "team2Id": 798, "team1Score": "33", "team2Score": "39", "time": "2016-07-09T14:00:00" }, { "id": 7963, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Supreme", "team1Id": 802, "team2": "HC Elite", "team2Id": 805, "team1Score": "44", "team2Score": "54", "time": "2016-07-09T15:00:00" }, { "id": 7959, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Severn Elite", "team1Id": 804, "team2": "Team Takeover", "team2Id": 803, "team1Score": "51", "team2Score": "48", "time": "2016-07-09T15:00:00" }, { "id": 7966, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Maryland 3D", "team1Id": 799, "team2": "DC Premier", "team2Id": 801, "team1Score": "41", "team2Score": "44", "time": "2016-07-09T15:00:00" }, { "id": 7967, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "6th Man Warriors", "team1Id": 808, "team2": "Force Attack", "team2Id": 810, "team1Score": "35", "team2Score": "34", "time": "2016-07-09T16:00:00" }, { "id": 7968, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Savage Eagles", "team1Id": 806, "team2": "Team Glory", "team2Id": 811, "team1Score": "37", "team2Score": "44", "time": "2016-07-09T16:00:00" }, { "id": 7965, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Maryland Playmakers", "team1Id": 809, "team2": "E-City Ballers", "team2Id": 807, "team1Score": "29", "team2Score": "32", "time": "2016-07-09T16:00:00" }, { "id": 7962, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Baltimore Stars", "team1Id": 796, "team2": "DC Assault", "team2Id": 795, "team1Score": "47", "team2Score": "49", "time": "2016-07-09T16:00:00" }, { "id": 7964, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Reisterstown Wolfpack", "team1Id": 797, "team2": "Sharks", "team2Id": 800, "team1Score": "51", "team2Score": "53", "time": "2016-07-09T17:00:00" } ], "locations": { "loc-1": { "name": "Meadowbrook Ct. 1", "latitude": 39.248958, "longitude": -76.822041 }, "loc-2": { "name": "Meadowbrook Ct. 2", "latitude": 39.248958, "longitude": -76.822041 }, "loc-3": { "name": "Meadowbrook Ct. 3", "latitude": 39.248958, "longitude": -76.822041 }, "loc-4": { "name": "Meadowbrook Ct. 4", "latitude": 39.248958, "longitude": -76.822041 } }, "standings": [ { "teamId": 795, "teamName": "DC Assault", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 187, "pointsAgainst": 162, "pointsDiff": 25, "division": "6th grade" }, { "teamId": 798, "teamName": "MADE Elite", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 147, "pointsAgainst": 137, "pointsDiff": 10, "division": "6th grade" }, { "teamId": 800, "teamName": "Sharks", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 162, "pointsAgainst": 163, "pointsDiff": -1, "division": "6th grade" }, { "teamId": 797, "teamName": "Reisterstown Wolfpack", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 166, "pointsAgainst": 179, "pointsDiff": -13, "division": "6th grade" }, { "teamId": 796, "teamName": "Baltimore Stars", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 157, "pointsAgainst": 178, "pointsDiff": -21, "division": "6th grade" }, { "teamId": 805, "teamName": "HC Elite", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 211, "pointsAgainst": 172, "pointsDiff": 39, "division": "7th grade" }, { "teamId": 801, "teamName": "DC Premier", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 191, "pointsAgainst": 183, "pointsDiff": 8, "division": "7th grade" }, { "teamId": 804, "teamName": "Severn Elite", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 181, "pointsAgainst": 153, "pointsDiff": 28, "division": "7th grade" }, { "teamId": 803, "teamName": "Team Takeover", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 249, "pointsAgainst": 233, "pointsDiff": 16, "division": "7th grade" }, { "teamId": 799, "teamName": "Maryland 3D", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 173, "pointsAgainst": 215, "pointsDiff": -42, "division": "7th grade" }, { "teamId": 802, "teamName": "Baltimore Supreme", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 179, "pointsAgainst": 228, "pointsDiff": -49, "division": "7th grade" }, { "teamId": 808, "teamName": "6th Man Warriors", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 146, "pointsAgainst": 136, "pointsDiff": 10, "division": "8th grade" }, { "teamId": 809, "teamName": "Maryland Playmakers", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 117, "pointsAgainst": 109, "pointsDiff": 8, "division": "8th grade" }, { "teamId": 811, "teamName": "Team Glory", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 153, "pointsAgainst": 141, "pointsDiff": 12, "division": "8th grade" }, { "teamId": 806, "teamName": "Savage Eagles", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 150, "pointsAgainst": 142, "pointsDiff": 8, "division": "8th grade" }, { "teamId": 810, "teamName": "Force Attack", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 133, "pointsAgainst": 151, "pointsDiff": -18, "division": "8th grade" }, { "teamId": 807, "teamName": "E-City Ballers", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 123, "pointsAgainst": 143, "pointsDiff": -20, "division": "8th grade" } ], "teams": [ { "id": 796, "name": "Baltimore Stars", "coach": "James", "division": "6th grade" }, { "id": 795, "name": "DC Assault", "coach": "Bartlett", "division": "6th grade" }, { "id": 798, "name": "MADE Elite", "coach": "Johnson", "division": "6th grade" }, { "id": 797, "name": "Reisterstown Wolfpack", "coach": "Hightower", "division": "6th grade" }, { "id": 800, "name": "Sharks", "coach": "Smith", "division": "6th grade" }, { "id": 802, "name": "Baltimore Supreme", "coach": "Miller", "division": "7th grade" }, { "id": 801, "name": "DC Premier", "coach": "Davis", "division": "7th grade" }, { "id": 805, "name": "HC Elite", "coach": "Michelotti", "division": "7th grade" }, { "id": 799, "name": "Maryland 3D", "coach": "Brown", "division": "7th grade" }, { "id": 804, "name": "Severn Elite", "coach": "Wilson", "division": "7th grade" }, { "id": 803, "name": "Team Takeover", "coach": "Williams", "division": "7th grade" }, { "id": 808, "name": "6th Man Warriors", "coach": "White", "division": "8th grade" }, { "id": 807, "name": "E-City Ballers", "coach": "Moore", "division": "8th grade" }, { "id": 810, "name": "Force Attack", "coach": "Taylor", "division": "8th grade" }, { "id": 809, "name": "Maryland Playmakers", "coach": "Jackson", "division": "8th grade" }, { "id": 806, "name": "Savage Eagles", "coach": "Anderson", "division": "8th grade" }, { "id": 811, "name": "Team Glory", "coach": "Thomas", "division": "8th grade" } ] }, "46ebd526-8839-476a-9ba0-8a9b2c07f3c3": { "tournament": { "name": "Summer Showdown", "id": "46ebd526-8839-476a-9ba0-8a9b2c07f3c3" }, "games": [ { "id": 8003, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "DC Assault", "team1Id": 842, "team2": "Sharks", "team2Id": 844, "team1Score": "", "team2Score": "", "time": "2016-07-23T08:00:00" }, { "id": 8004, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "DC Premier", "team1Id": 845, "team2": "Severn Elite", "team2Id": 832, "team1Score": "", "team2Score": "", "time": "2016-07-23T08:00:00" }, { "id": 8005, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "MADE Elite", "team1Id": 840, "team2": "Reisterstown Wolfpack", "team2Id": 841, "team1Score": "", "team2Score": "", "time": "2016-07-23T08:00:00" }, { "id": 8007, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Supreme", "team1Id": 839, "team2": "Team Takeover", "team2Id": 831, "team1Score": "", "team2Score": "", "time": "2016-07-23T08:00:00" }, { "id": 8008, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "6th Man Warriors", "team1Id": 834, "team2": "Team Glory", "team2Id": 835, "team1Score": "", "team2Score": "", "time": "2016-07-23T09:00:00" }, { "id": 8009, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Force Attack", "team1Id": 836, "team2": "Maryland Playmakers", "team2Id": 837, "team1Score": "", "team2Score": "", "time": "2016-07-23T09:00:00" }, { "id": 8010, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "E-City Ballers", "team1Id": 838, "team2": "Savage Eagles", "team2Id": 833, "team1Score": "", "team2Score": "", "time": "2016-07-23T09:00:00" }, { "id": 8006, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "HC Elite", "team1Id": 830, "team2": "Maryland 3D", "team2Id": 843, "team1Score": "", "team2Score": "", "time": "2016-07-23T09:00:00" }, { "id": 8013, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Stars", "team1Id": 829, "team2": "Sharks", "team2Id": 844, "team1Score": "", "team2Score": "", "time": "2016-07-23T10:00:00" }, { "id": 8017, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "DC Assault", "team1Id": 842, "team2": "MADE Elite", "team2Id": 840, "team1Score": "", "team2Score": "", "time": "2016-07-23T10:00:00" }, { "id": 8021, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Supreme", "team1Id": 839, "team2": "Severn Elite", "team2Id": 832, "team1Score": "", "team2Score": "", "time": "2016-07-23T10:00:00" }, { "id": 8014, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "DC Premier", "team1Id": 845, "team2": "HC Elite", "team2Id": 830, "team1Score": "", "team2Score": "", "time": "2016-07-23T11:00:00" }, { "id": 8011, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "6th Man Warriors", "team1Id": 834, "team2": "Savage Eagles", "team2Id": 833, "team1Score": "", "team2Score": "", "time": "2016-07-23T11:00:00" }, { "id": 8012, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Team Glory", "team1Id": 835, "team2": "Maryland Playmakers", "team2Id": 837, "team1Score": "", "team2Score": "", "time": "2016-07-23T11:00:00" }, { "id": 8016, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Team Takeover", "team1Id": 831, "team2": "Maryland 3D", "team2Id": 843, "team1Score": "", "team2Score": "", "time": "2016-07-23T11:00:00" }, { "id": 8020, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Sharks", "team1Id": 844, "team2": "MADE Elite", "team2Id": 840, "team1Score": "", "team2Score": "", "time": "2016-07-23T12:00:00" }, { "id": 8015, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "E-City Ballers", "team1Id": 838, "team2": "Force Attack", "team2Id": 836, "team1Score": "", "team2Score": "", "time": "2016-07-23T12:00:00" }, { "id": 8018, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Baltimore Stars", "team1Id": 829, "team2": "Reisterstown Wolfpack", "team2Id": 841, "team1Score": "", "team2Score": "", "time": "2016-07-23T12:00:00" }, { "id": 8019, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "6th Man Warriors", "team1Id": 834, "team2": "Maryland Playmakers", "team2Id": 837, "team1Score": "", "team2Score": "", "time": "2016-07-23T13:00:00" }, { "id": 8022, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Team Takeover", "team1Id": 831, "team2": "DC Premier", "team2Id": 845, "team1Score": "", "team2Score": "", "time": "2016-07-23T13:00:00" }, { "id": 8028, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Supreme", "team1Id": 839, "team2": "Maryland 3D", "team2Id": 843, "team1Score": "", "team2Score": "", "time": "2016-07-23T13:00:00" }, { "id": 8035, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Severn Elite", "team1Id": 832, "team2": "HC Elite", "team2Id": 830, "team1Score": "", "team2Score": "", "time": "2016-07-23T13:00:00" }, { "id": 8029, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Reisterstown Wolfpack", "team1Id": 841, "team2": "DC Assault", "team2Id": 842, "team1Score": "", "team2Score": "", "time": "2016-07-23T14:00:00" }, { "id": 8031, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Stars", "team1Id": 829, "team2": "MADE Elite", "team2Id": 840, "team1Score": "", "team2Score": "", "time": "2016-07-23T14:00:00" }, { "id": 8032, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Savage Eagles", "team1Id": 833, "team2": "Force Attack", "team2Id": 836, "team1Score": "", "team2Score": "", "time": "2016-07-23T14:00:00" }, { "id": 8023, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Team Glory", "team1Id": 835, "team2": "E-City Ballers", "team2Id": 838, "team1Score": "", "team2Score": "", "time": "2016-07-23T14:00:00" }, { "id": 8030, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Severn Elite", "team1Id": 832, "team2": "Team Takeover", "team2Id": 831, "team1Score": "", "team2Score": "", "time": "2016-07-23T15:00:00" }, { "id": 8026, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Supreme", "team1Id": 839, "team2": "HC Elite", "team2Id": 830, "team1Score": "", "team2Score": "", "time": "2016-07-23T15:00:00" }, { "id": 8034, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Maryland 3D", "team1Id": 843, "team2": "DC Premier", "team2Id": 845, "team1Score": "", "team2Score": "", "time": "2016-07-23T15:00:00" }, { "id": 8036, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Baltimore Stars", "team1Id": 829, "team2": "DC Assault", "team2Id": 842, "team1Score": "", "team2Score": "", "time": "2016-07-23T16:00:00" }, { "id": 8027, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Maryland Playmakers", "team1Id": 837, "team2": "E-City Ballers", "team2Id": 838, "team1Score": "", "team2Score": "", "time": "2016-07-23T16:00:00" }, { "id": 8024, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Savage Eagles", "team1Id": 833, "team2": "Team Glory", "team2Id": 835, "team1Score": "", "team2Score": "", "time": "2016-07-23T16:00:00" }, { "id": 8025, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "6th Man Warriors", "team1Id": 834, "team2": "Force Attack", "team2Id": 836, "team1Score": "", "team2Score": "", "time": "2016-07-23T16:00:00" }, { "id": 8033, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Reisterstown Wolfpack", "team1Id": 841, "team2": "Sharks", "team2Id": 844, "team1Score": "", "team2Score": "", "time": "2016-07-23T17:00:00" } ], "locations": { "loc-1": { "name": "Meadowbrook Ct. 1", "latitude": 39.248958, "longitude": -76.822041 }, "loc-2": { "name": "Meadowbrook Ct. 2", "latitude": 39.248958, "longitude": -76.822041 }, "loc-3": { "name": "Meadowbrook Ct. 3", "latitude": 39.248958, "longitude": -76.822041 }, "loc-4": { "name": "Meadowbrook Ct. 4", "latitude": 39.248958, "longitude": -76.822041 } }, "standings": [ { "teamId": 829, "teamName": "Baltimore Stars", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 842, "teamName": "DC Assault", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 840, "teamName": "MADE Elite", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 841, "teamName": "Reisterstown Wolfpack", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 844, "teamName": "Sharks", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "6th grade" }, { "teamId": 839, "teamName": "Baltimore Supreme", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 845, "teamName": "DC Premier", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 830, "teamName": "HC Elite", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 843, "teamName": "Maryland 3D", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 832, "teamName": "Severn Elite", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 831, "teamName": "Team Takeover", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "7th grade" }, { "teamId": 834, "teamName": "6th Man Warriors", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 838, "teamName": "E-City Ballers", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 836, "teamName": "Force Attack", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 837, "teamName": "Maryland Playmakers", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 833, "teamName": "Savage Eagles", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" }, { "teamId": 835, "teamName": "Team Glory", "wins": 0, "losses": 0, "winningPct": ".000", "pointsFor": 0, "pointsAgainst": 0, "pointsDiff": 0, "division": "8th grade" } ], "teams": [ { "id": 829, "name": "Baltimore Stars", "coach": "James", "division": "6th grade" }, { "id": 842, "name": "DC Assault", "coach": "Bartlett", "division": "6th grade" }, { "id": 840, "name": "MADE Elite", "coach": "Johnson", "division": "6th grade" }, { "id": 841, "name": "Reisterstown Wolfpack", "coach": "Hightower", "division": "6th grade" }, { "id": 844, "name": "Sharks", "coach": "Smith", "division": "6th grade" }, { "id": 839, "name": "Baltimore Supreme", "coach": "Miller", "division": "7th grade" }, { "id": 845, "name": "DC Premier", "coach": "Davis", "division": "7th grade" }, { "id": 830, "name": "HC Elite", "coach": "Michelotti", "division": "7th grade" }, { "id": 843, "name": "Maryland 3D", "coach": "Brown", "division": "7th grade" }, { "id": 832, "name": "Severn Elite", "coach": "Wilson", "division": "7th grade" }, { "id": 831, "name": "Team Takeover", "coach": "Williams", "division": "7th grade" }, { "id": 834, "name": "6th Man Warriors", "coach": "White", "division": "8th grade" }, { "id": 838, "name": "E-City Ballers", "coach": "Moore", "division": "8th grade" }, { "id": 836, "name": "Force Attack", "coach": "Taylor", "division": "8th grade" }, { "id": 837, "name": "Maryland Playmakers", "coach": "Jackson", "division": "8th grade" }, { "id": 833, "name": "Savage Eagles", "coach": "Anderson", "division": "8th grade" }, { "id": 835, "name": "Team Glory", "coach": "Thomas", "division": "8th grade" } ] }, "89e13aa2-ba6d-4f55-9cc2-61eba6172c63": { "tournament": { "name": "March Madness Tournament", "id": "89e13aa2-ba6d-4f55-9cc2-61eba6172c63" }, "games": [ { "id": 12137, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Columbia Ravens 6th", "team1Id": 6166, "team2": "HC Elite White 6th", "team2Id": 6163, "team1Score": "38", "team2Score": "44", "time": "2015-03-20T18:00:00" }, { "id": 12069, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "HC Elite White 11th", "team1Id": 6207, "team2": "Hebron Vikings", "team2Id": 6211, "team1Score": "92", "team2Score": "54", "time": "2015-03-20T18:00:00" }, { "id": 12037, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "HC ELITE Dreish 2nd", "team1Id": 6147, "team2": "Sharks 3rd", "team2Id": 6148, "team1Score": "13", "team2Score": "32", "time": "2015-03-20T18:00:00" }, { "id": 12064, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "HC Elite - Thai 10th", "team1Id": 6202, "team2": "HC Elite 9th", "team2Id": 6194, "team1Score": "29", "team2Score": "41", "time": "2015-03-20T18:00:00" }, { "id": 12039, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Harundale Knights 5th", "team1Id": 6154, "team2": "Laurel Lakers 5th", "team2Id": 6160, "team1Score": "32", "team2Score": "19", "time": "2015-03-20T19:00:00" }, { "id": 12055, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "HC Elite (Phillips) 8th", "team1Id": 6191, "team2": "Howard Unite Elite 8th", "team2Id": 6189, "team1Score": "56", "team2Score": "44", "time": "2015-03-20T19:00:00" }, { "id": 12048, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "HC Elite Green 6th", "team1Id": 6164, "team2": "Team Dedication 6th", "team2Id": 6165, "team1Score": "33", "team2Score": "31", "time": "2015-03-20T19:00:00" }, { "id": 12104, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Randallstown Running Rebels 5th", "team1Id": 6161, "team2": "TEAM Severn Elite 5th", "team2Id": 6150, "team1Score": "23", "team2Score": "49", "time": "2015-03-20T19:00:00" }, { "id": 12061, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "HC Elite Tringali 10th", "team1Id": 6197, "team2": "URBANA ELITE 10th", "team2Id": 6201, "team1Score": "70", "team2Score": "26", "time": "2015-03-20T20:00:00" }, { "id": 12062, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Columbia Ravens 11th", "team1Id": 6205, "team2": "Red Branch Warriors", "team2Id": 6209, "team1Score": "58", "team2Score": "30", "time": "2015-03-20T20:00:00" }, { "id": 12097, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "HC ELITE Dreish 2nd", "team1Id": 6147, "team2": "Team Rush (Chisolm) 2nd", "team2Id": 6145, "team1Score": "27", "team2Score": "12", "time": "2015-03-20T20:00:00" }, { "id": 12065, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Cyclones 3rd", "team1Id": 6149, "team2": "Sharks 3rd", "team2Id": 6148, "team1Score": "16", "team2Score": "22", "time": "2015-03-20T20:00:00" }, { "id": 12082, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Bolt 7th", "team1Id": 6178, "team2": "WHC Force 7th", "team2Id": 6180, "team1Score": "44", "team2Score": "51", "time": "2015-03-20T21:00:00" }, { "id": 12085, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Columbia Ravens 7th", "team1Id": 6174, "team2": "JPYO Sonics 7th", "team2Id": 6181, "team1Score": "30", "team2Score": "10", "time": "2015-03-20T21:00:00" }, { "id": 12078, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "HC Elite Green 6th", "team1Id": 6164, "team2": "Laurel Lakers 6th", "team2Id": 6170, "team1Score": "54", "team2Score": "19", "time": "2015-03-20T21:00:00" }, { "id": 12152, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "HC Elite 9th", "team1Id": 6194, "team2": "Columbia Ravens 9th", "team2Id": 6193, "team1Score": "35", "team2Score": "21", "time": "2015-03-20T21:00:00" }, { "id": 12031, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "HC Elite White 11th", "team1Id": 6207, "team2": "PDE Running Suns 11th", "team2Id": 6206, "team1Score": "73", "team2Score": "28", "time": "2015-03-21T08:00:00" }, { "id": 12030, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Hebron Vikings", "team1Id": 6211, "team2": "Lake Shore", "team2Id": 6208, "team1Score": "44", "team2Score": "62", "time": "2015-03-21T08:00:00" }, { "id": 12045, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "FAME Gold 5th", "team1Id": 6153, "team2": "Sharks 5th", "team2Id": 6159, "team1Score": "22", "team2Score": "29", "time": "2015-03-21T08:00:00" }, { "id": 12040, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Randallstown Running Rebels 5th", "team1Id": 6161, "team2": "Warriors 5th", "team2Id": 6155, "team1Score": "27", "team2Score": "35", "time": "2015-03-21T08:00:00" }, { "id": 12043, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "HC Elite White 6th", "team1Id": 6163, "team2": "Pikesville Panthers 6th", "team2Id": 6172, "team1Score": "52", "team2Score": "36", "time": "2015-03-21T08:30:00" }, { "id": 12046, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "FAME Burgundy 6th", "team1Id": 6169, "team2": "Westminster Travel 6th", "team2Id": 6168, "team1Score": "31", "team2Score": "45", "time": "2015-03-21T08:30:00" }, { "id": 12090, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "HC Elite Tringali 10th", "team1Id": 6197, "team2": "Millersville Blue Devils 10th", "team2Id": 6199, "team1Score": "36", "team2Score": "38", "time": "2015-03-21T09:00:00" }, { "id": 12051, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Cyclones B 7th", "team1Id": 6185, "team2": "WHC Force 7th", "team2Id": 6180, "team1Score": "13", "team2Score": "57", "time": "2015-03-21T09:00:00" }, { "id": 12047, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Laurel Lakers 6th", "team1Id": 6170, "team2": "Maryland Motion 6th", "team2Id": 6167, "team1Score": "29", "team2Score": "42", "time": "2015-03-21T09:00:00" }, { "id": 12110, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "BALT SUPREME 7th", "team1Id": 6176, "team2": "MADE Elite 7th", "team2Id": 6175, "team1Score": "55", "team2Score": "45", "time": "2015-03-21T09:00:00" }, { "id": 12054, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "District Hoops 8th", "team1Id": 6192, "team2": "Team Dedication 8th", "team2Id": 6190, "team1Score": "37", "team2Score": "34", "time": "2015-03-21T09:30:00" }, { "id": 12058, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Glenwood 8th", "team1Id": 6187, "team2": "MD Playmakers - Red 8th", "team2Id": 6186, "team1Score": "38", "team2Score": "53", "time": "2015-03-21T09:30:00" }, { "id": 12049, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Cyclones A 7th", "team1Id": 6177, "team2": "Maryland 3D 7th", "team2Id": 6179, "team1Score": "49", "team2Score": "41", "time": "2015-03-21T10:00:00" }, { "id": 12038, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Elite 5th", "team1Id": 6157, "team2": "WDBA 5th", "team2Id": 6158, "team1Score": "41", "team2Score": "50", "time": "2015-03-21T10:00:00" }, { "id": 12059, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Columbia Ravens 9th", "team1Id": 6193, "team2": "Hoopmasters 10th", "team2Id": 6196, "team1Score": "34", "team2Score": "39", "time": "2015-03-21T10:00:00" }, { "id": 12044, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "FAME Gold 6th", "team1Id": 6162, "team2": "Virginia Hurricanes 6th", "team2Id": 6171, "team1Score": "28", "team2Score": "52", "time": "2015-03-21T10:00:00" }, { "id": 12056, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "JPYO Sonics 7th", "team1Id": 6181, "team2": "SMD Heat 7th", "team2Id": 6183, "team1Score": "", "team2Score": "", "time": "2015-03-21T10:30:00" }, { "id": 12057, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Carroll Bball Club- Selby 10th", "team1Id": 6203, "team2": "Team Dedication 9th", "team2Id": 6195, "team1Score": "39", "team2Score": "47", "time": "2015-03-21T10:30:00" }, { "id": 12074, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Reisterstown Wolfpack 5th", "team1Id": 6152, "team2": "Team Dedication 4th", "team2Id": 6151, "team1Score": "55", "team2Score": "17", "time": "2015-03-21T11:00:00" }, { "id": 12063, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "HC Elite Green 11th", "team1Id": 6204, "team2": "Lake Shore", "team2Id": 6208, "team1Score": "48", "team2Score": "32", "time": "2015-03-21T11:00:00" }, { "id": 12071, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Warriors 5th", "team1Id": 6155, "team2": "TEAM Severn Elite 5th", "team2Id": 6150, "team1Score": "12", "team2Score": "72", "time": "2015-03-21T11:00:00" }, { "id": 12053, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Columbia Ravens 7th", "team1Id": 6174, "team2": "Team Flight 7th", "team2Id": 6184, "team1Score": "37", "team2Score": "34", "time": "2015-03-21T11:00:00" }, { "id": 12077, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Westminster Travel 6th", "team1Id": 6168, "team2": "Maryland Motion 6th", "team2Id": 6167, "team1Score": "25", "team2Score": "58", "time": "2015-03-21T11:30:00" }, { "id": 12080, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "FAME Burgundy 6th", "team1Id": 6169, "team2": "Team Dedication 6th", "team2Id": 6165, "team1Score": "27", "team2Score": "56", "time": "2015-03-21T11:30:00" }, { "id": 12075, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "FAME Gold 6th", "team1Id": 6162, "team2": "HC Elite White 6th", "team2Id": 6163, "team1Score": "34", "team2Score": "68", "time": "2015-03-21T12:00:00" }, { "id": 12067, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Team Rush (Chisolm) 2nd", "team1Id": 6145, "team2": "NOVA 94 FEET 2nd", "team2Id": 6146, "team1Score": "10", "team2Score": "30", "time": "2015-03-21T12:00:00" }, { "id": 12073, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "WDBA 5th", "team1Id": 6158, "team2": "Laurel Lakers 5th", "team2Id": 6160, "team1Score": "50", "team2Score": "16", "time": "2015-03-21T12:00:00" }, { "id": 12086, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Columbia Ravens 8th", "team1Id": 6188, "team2": "Team Dedication 8th", "team2Id": 6190, "team1Score": "76", "team2Score": "39", "time": "2015-03-21T12:00:00" }, { "id": 12079, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "BALT SUPREME 7th", "team1Id": 6176, "team2": "Maryland 3D 7th", "team2Id": 6179, "team1Score": "31", "team2Score": "33", "time": "2015-03-21T12:45:00" }, { "id": 12081, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Nova 94 Feet, 7th", "team1Id": 6173, "team2": "MADE Elite 7th", "team2Id": 6175, "team1Score": "45", "team2Score": "49", "time": "2015-03-21T12:45:00" }, { "id": 12124, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "HC Elite Tringali 10th", "team1Id": 6197, "team2": "Loudoun Xtreme Force 10th", "team2Id": 6198, "team1Score": "37", "team2Score": "28", "time": "2015-03-21T13:15:00" }, { "id": 12083, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Cyclones A 7th", "team1Id": 6177, "team2": "HC Elite 7th", "team2Id": 6182, "team1Score": "29", "team2Score": "41", "time": "2015-03-21T13:15:00" }, { "id": 12084, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Cyclones B 7th", "team1Id": 6185, "team2": "SMD Heat 7th", "team2Id": 6183, "team1Score": "27", "team2Score": "79", "time": "2015-03-21T13:15:00" }, { "id": 12076, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Columbia Ravens 6th", "team1Id": 6166, "team2": "Virginia Hurricanes 6th", "team2Id": 6171, "team1Score": "32", "team2Score": "50", "time": "2015-03-21T13:15:00" }, { "id": 12087, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "District Hoops 8th", "team1Id": 6192, "team2": "Howard Unite Elite 8th", "team2Id": 6189, "team1Score": "35", "team2Score": "41", "time": "2015-03-21T13:45:00" }, { "id": 12089, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Glenwood 8th", "team1Id": 6187, "team2": "HC Elite (Phillips) 8th", "team2Id": 6191, "team1Score": "25", "team2Score": "77", "time": "2015-03-21T13:45:00" }, { "id": 12036, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Madison Bucs 3rd", "team1Id": 6210, "team2": "NOVA 94 FEET 2nd", "team2Id": 6146, "team1Score": "27", "team2Score": "24", "time": "2015-03-21T14:15:00" }, { "id": 12035, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Heat Wave 10th", "team1Id": 6200, "team2": "URBANA ELITE 10th", "team2Id": 6201, "team1Score": "30", "team2Score": "53", "time": "2015-03-21T14:15:00" }, { "id": 12091, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Team Dedication 9th", "team1Id": 6195, "team2": "HC Elite 9th", "team2Id": 6194, "team1Score": "33", "team2Score": "48", "time": "2015-03-21T14:15:00" }, { "id": 12088, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Carroll Bball Club- Selby 10th", "team1Id": 6203, "team2": "Hoopmasters 10th", "team2Id": 6196, "team1Score": "36", "team2Score": "48", "time": "2015-03-21T14:15:00" }, { "id": 12093, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Columbia Ravens 11th", "team1Id": 6205, "team2": "PDE Running Suns 11th", "team2Id": 6206, "team1Score": "59", "team2Score": "39", "time": "2015-03-21T14:45:00" }, { "id": 12095, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Red Branch Warriors", "team1Id": 6209, "team2": "Lake Shore", "team2Id": 6208, "team1Score": "51", "team2Score": "56", "time": "2015-03-21T14:45:00" }, { "id": 12105, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Team Ultimate 5th", "team1Id": 6156, "team2": "Team Dedication 4th", "team2Id": 6151, "team1Score": "38", "team2Score": "6", "time": "2015-03-21T15:15:00" }, { "id": 12106, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "WDBA 5th", "team1Id": 6158, "team2": "FAME Gold 5th", "team2Id": 6153, "team1Score": "49", "team2Score": "18", "time": "2015-03-21T15:15:00" }, { "id": 12096, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "HC Elite Green 11th", "team1Id": 6204, "team2": "HC Elite White 11th", "team2Id": 6207, "team1Score": "49", "team2Score": "61", "time": "2015-03-21T15:15:00" }, { "id": 12101, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Sharks 5th", "team1Id": 6159, "team2": "Harundale Knights 5th", "team2Id": 6154, "team1Score": "36", "team2Score": "28", "time": "2015-03-21T15:15:00" }, { "id": 12107, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Virginia Hurricanes 6th", "team1Id": 6171, "team2": "HC Elite White 6th", "team2Id": 6163, "team1Score": "78", "team2Score": "63", "time": "2015-03-21T15:45:00" }, { "id": 12108, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "FAME Burgundy 6th", "team1Id": 6169, "team2": "Maryland Motion 6th", "team2Id": 6167, "team1Score": "18", "team2Score": "50", "time": "2015-03-21T15:45:00" }, { "id": 12112, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Maryland 3D 7th", "team1Id": 6179, "team2": "HC Elite 7th", "team2Id": 6182, "team1Score": "26", "team2Score": "37", "time": "2015-03-21T16:15:00" }, { "id": 12116, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Columbia Ravens 8th", "team1Id": 6188, "team2": "MD Playmakers - Red 8th", "team2Id": 6186, "team1Score": "50", "team2Score": "45", "time": "2015-03-21T16:15:00" }, { "id": 12060, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Heat Wave 10th", "team1Id": 6200, "team2": "Loudoun Xtreme Force 10th", "team2Id": 6198, "team1Score": "21", "team2Score": "60", "time": "2015-03-21T16:15:00" }, { "id": 12113, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Westminster Travel 6th", "team1Id": 6168, "team2": "HC Elite Green 6th", "team2Id": 6164, "team1Score": "27", "team2Score": "70", "time": "2015-03-21T16:15:00" }, { "id": 12111, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Nova 94 Feet, 7th", "team1Id": 6173, "team2": "Cyclones A 7th", "team2Id": 6177, "team1Score": "73", "team2Score": "39", "time": "2015-03-21T17:00:00" }, { "id": 12114, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Bolt 7th", "team1Id": 6178, "team2": "Team Flight 7th", "team2Id": 6184, "team1Score": "35", "team2Score": "69", "time": "2015-03-21T17:00:00" }, { "id": 12119, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "District Hoops 8th", "team1Id": 6192, "team2": "Glenwood 8th", "team2Id": 6187, "team1Score": "52", "team2Score": "46", "time": "2015-03-21T17:30:00" }, { "id": 12118, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Team Dedication 8th", "team1Id": 6190, "team2": "Howard Unite Elite 8th", "team2Id": 6189, "team1Score": "54", "team2Score": "49", "time": "2015-03-21T17:30:00" }, { "id": 12117, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "WHC Force 7th", "team1Id": 6180, "team2": "SMD Heat 7th", "team2Id": 6183, "team1Score": "48", "team2Score": "58", "time": "2015-03-21T17:30:00" }, { "id": 12109, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Team Dedication 6th", "team1Id": 6165, "team2": "Laurel Lakers 6th", "team2Id": 6170, "team1Score": "44", "team2Score": "19", "time": "2015-03-21T17:30:00" }, { "id": 12120, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Carroll Bball Club- Selby 10th", "team1Id": 6203, "team2": "HC Elite 9th", "team2Id": 6194, "team1Score": "57", "team2Score": "77", "time": "2015-03-21T18:00:00" }, { "id": 12122, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Hoopmasters 10th", "team1Id": 6196, "team2": "HC Elite - Thai 10th", "team2Id": 6202, "team1Score": "36", "team2Score": "31", "time": "2015-03-21T18:00:00" }, { "id": 12126, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "PDE Running Suns 11th", "team1Id": 6206, "team2": "Hebron Vikings", "team2Id": 6211, "team1Score": "67", "team2Score": "69", "time": "2015-03-21T18:30:00" }, { "id": 12123, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Millersville Blue Devils 10th", "team1Id": 6199, "team2": "Heat Wave 10th", "team2Id": 6200, "team1Score": "53", "team2Score": "24", "time": "2015-03-21T18:30:00" }, { "id": 12092, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "URBANA ELITE 10th", "team1Id": 6201, "team2": "Loudoun Xtreme Force 10th", "team2Id": 6198, "team1Score": "38", "team2Score": "58", "time": "2015-03-21T18:30:00" }, { "id": 12134, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Laurel Lakers 5th", "team1Id": 6160, "team2": "FAME Gold 5th", "team2Id": 6153, "team1Score": "36", "team2Score": "15", "time": "2015-03-21T18:30:00" }, { "id": 12127, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Cyclones 3rd", "team1Id": 6149, "team2": "Madison Bucs 3rd", "team2Id": 6210, "team1Score": "7", "team2Score": "23", "time": "2015-03-21T19:00:00" }, { "id": 12129, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Red Branch Warriors", "team1Id": 6209, "team2": "HC Elite White 11th", "team2Id": 6207, "team1Score": "57", "team2Score": "77", "time": "2015-03-21T19:00:00" }, { "id": 12389, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "SMD Heat 7th", "team1Id": 6183, "team2": "Columbia Ravens 7th", "team2Id": 6174, "team1Score": "44", "team2Score": "38", "time": "2015-03-21T19:30:00" }, { "id": 12388, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "JPYO Sonics 7th", "team1Id": 6181, "team2": "Laurel Lakers 6th", "team2Id": 6170, "team1Score": "", "team2Score": "", "time": "2015-03-21T19:30:00" }, { "id": 12041, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Pikesville Panthers", "team1Id": 6212, "team2": "Team Ultimate 5th", "team2Id": 6156, "team1Score": "14", "team2Score": "65", "time": "2015-03-21T19:30:00" }, { "id": 12131, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Baltimore Elite 5th", "team1Id": 6157, "team2": "Harundale Knights 5th", "team2Id": 6154, "team1Score": "49", "team2Score": "32", "time": "2015-03-21T19:30:00" }, { "id": 12125, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Columbia Ravens 11th", "team1Id": 6205, "team2": "Lake Shore", "team2Id": 6208, "team1Score": "34", "team2Score": "47", "time": "2015-03-22T09:00:00" }, { "id": 12066, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "HC ELITE Dreish 2nd", "team1Id": 6147, "team2": "Madison Bucs 3rd", "team2Id": 6210, "team1Score": "11", "team2Score": "25", "time": "2015-03-22T09:00:00" }, { "id": 12068, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Baltimore Elite 5th", "team1Id": 6157, "team2": "Sharks 5th", "team2Id": 6159, "team1Score": "20", "team2Score": "26", "time": "2015-03-22T09:00:00" }, { "id": 12102, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "TEAM Severn Elite 5th", "team1Id": 6150, "team2": "Reisterstown Wolfpack 5th", "team2Id": 6152, "team1Score": "61", "team2Score": "34", "time": "2015-03-22T09:00:00" }, { "id": 12094, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Columbia Ravens 9th", "team1Id": 6193, "team2": "HC Elite - Thai 10th", "team2Id": 6202, "team1Score": "60", "team2Score": "32", "time": "2015-03-22T09:00:00" }, { "id": 12042, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Pikesville Panthers", "team1Id": 6212, "team2": "Warriors 5th", "team2Id": 6155, "team1Score": "28", "team2Score": "24", "time": "2015-03-22T09:00:00" }, { "id": 12144, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Maryland 3D 7th", "team1Id": 6179, "team2": "Nova 94 Feet, 7th", "team2Id": 6173, "team1Score": "33", "team2Score": "43", "time": "2015-03-22T10:00:00" }, { "id": 12148, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "MD Playmakers - Red 8th", "team1Id": 6186, "team2": "HC Elite (Phillips) 8th", "team2Id": 6191, "team1Score": "37", "team2Score": "41", "time": "2015-03-22T10:00:00" }, { "id": 12150, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Team Dedication 8th", "team1Id": 6190, "team2": "Glenwood 8th", "team2Id": 6187, "team1Score": "55", "team2Score": "35", "time": "2015-03-22T10:00:00" }, { "id": 12115, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Cyclones B 7th", "team1Id": 6185, "team2": "Columbia Ravens 7th", "team2Id": 6174, "team1Score": "17", "team2Score": "51", "time": "2015-03-22T10:00:00" }, { "id": 12103, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Columbia Ravens 6th", "team1Id": 6166, "team2": "Pikesville Panthers 6th", "team2Id": 6172, "team1Score": "42", "team2Score": "30", "time": "2015-03-22T10:00:00" }, { "id": 12140, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "BALT SUPREME 7th", "team1Id": 6176, "team2": "HC Elite 7th", "team2Id": 6182, "team1Score": "19", "team2Score": "40", "time": "2015-03-22T10:00:00" }, { "id": 12099, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Sharks 3rd", "team1Id": 6148, "team2": "Madison Bucs 3rd", "team2Id": 6210, "team1Score": "27", "team2Score": "25", "time": "2015-03-22T11:00:00" }, { "id": 12098, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Cyclones 3rd", "team1Id": 6149, "team2": "NOVA 94 FEET 2nd", "team2Id": 6146, "team1Score": "6", "team2Score": "22", "time": "2015-03-22T11:00:00" }, { "id": 12070, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "FAME Gold 5th", "team1Id": 6153, "team2": "Harundale Knights 5th", "team2Id": 6154, "team1Score": "23", "team2Score": "25", "time": "2015-03-22T11:00:00" }, { "id": 12136, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Randallstown Running Rebels 5th", "team1Id": 6161, "team2": "Team Dedication 4th", "team2Id": 6151, "team1Score": "41", "team2Score": "10", "time": "2015-03-22T11:00:00" }, { "id": 12100, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Baltimore Elite 5th", "team1Id": 6157, "team2": "Laurel Lakers 5th", "team2Id": 6160, "team1Score": "41", "team2Score": "22", "time": "2015-03-22T11:00:00" }, { "id": 12121, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Team Dedication 9th", "team1Id": 6195, "team2": "Columbia Ravens 9th", "team2Id": 6193, "team1Score": "35", "team2Score": "31", "time": "2015-03-22T11:00:00" }, { "id": 12147, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "WHC Force 7th", "team1Id": 6180, "team2": "Columbia Ravens 7th", "team2Id": 6174, "team1Score": "14", "team2Score": "33", "time": "2015-03-22T12:00:00" }, { "id": 12151, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Carroll Bball Club- Selby 10th", "team1Id": 6203, "team2": "HC Elite - Thai 10th", "team2Id": 6202, "team1Score": "47", "team2Score": "43", "time": "2015-03-22T12:00:00" }, { "id": 12149, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Columbia Ravens 8th", "team1Id": 6188, "team2": "Howard Unite Elite 8th", "team2Id": 6189, "team1Score": "67", "team2Score": "38", "time": "2015-03-22T12:00:00" }, { "id": 12143, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "MADE Elite 7th", "team1Id": 6175, "team2": "Cyclones A 7th", "team2Id": 6177, "team1Score": "53", "team2Score": "58", "time": "2015-03-22T12:00:00" }, { "id": 12138, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Pikesville Panthers 6th", "team1Id": 6172, "team2": "FAME Gold 6th", "team2Id": 6162, "team1Score": "37", "team2Score": "30", "time": "2015-03-22T12:00:00" }, { "id": 12385, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Pikesville Panthers", "team1Id": 6212, "team2": "Reisterstown Wolfpack 5th", "team2Id": 6152, "team1Score": "16", "team2Score": "46", "time": "2015-03-22T12:00:00" }, { "id": 12130, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Sharks 3rd", "team1Id": 6148, "team2": "Team Rush (Chisolm) 2nd", "team2Id": 6145, "team1Score": "16", "team2Score": "14", "time": "2015-03-22T13:00:00" }, { "id": 12128, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "HC ELITE Dreish 2nd", "team1Id": 6147, "team2": "NOVA 94 FEET 2nd", "team2Id": 6146, "team1Score": "22", "team2Score": "36", "time": "2015-03-22T13:00:00" }, { "id": 12154, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "HC Elite Tringali 10th", "team1Id": 6197, "team2": "Heat Wave 10th", "team2Id": 6200, "team1Score": "50", "team2Score": "12", "time": "2015-03-22T13:15:00" }, { "id": 12387, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "HC Elite White 11th", "team1Id": 6207, "team2": "Columbia Ravens 11th", "team2Id": 6205, "team1Score": "47", "team2Score": "43", "time": "2015-03-22T13:15:00" }, { "id": 12146, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Team Flight 7th", "team1Id": 6184, "team2": "SMD Heat 7th", "team2Id": 6183, "team1Score": "41", "team2Score": "45", "time": "2015-03-22T13:15:00" }, { "id": 12145, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Bolt 7th", "team1Id": 6178, "team2": "Maryland 3D 7th", "team2Id": 6179, "team1Score": "23", "team2Score": "52", "time": "2015-03-22T13:15:00" }, { "id": 12135, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "TEAM Severn Elite 5th", "team1Id": 6150, "team2": "Team Ultimate 5th", "team2Id": 6156, "team1Score": "38", "team2Score": "45", "time": "2015-03-22T14:00:00" }, { "id": 12072, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Randallstown Running Rebels 5th", "team1Id": 6161, "team2": "Reisterstown Wolfpack 5th", "team2Id": 6152, "team1Score": "44", "team2Score": "33", "time": "2015-03-22T14:00:00" }, { "id": 12157, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "PDE Running Suns 11th", "team1Id": 6206, "team2": "HC Elite Green 11th", "team2Id": 6204, "team1Score": "49", "team2Score": "47", "time": "2015-03-22T14:15:00" }, { "id": 12158, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Columbia Ravens 6th", "team1Id": 6166, "team2": "FAME Gold 6th", "team2Id": 6162, "team1Score": "48", "team2Score": "29", "time": "2015-03-22T14:15:00" }, { "id": 12050, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "HC Elite 7th", "team1Id": 6182, "team2": "MADE Elite 7th", "team2Id": 6175, "team1Score": "52", "team2Score": "31", "time": "2015-03-22T14:15:00" }, { "id": 12032, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Loudoun Xtreme Force 10th", "team1Id": 6198, "team2": "Millersville Blue Devils 10th", "team2Id": 6199, "team1Score": "43", "team2Score": "30", "time": "2015-03-22T14:15:00" }, { "id": 12161, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Pikesville Panthers 6th", "team1Id": 6172, "team2": "Virginia Hurricanes 6th", "team2Id": 6171, "team1Score": "30", "team2Score": "65", "time": "2015-03-22T15:00:00" }, { "id": 12133, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Sharks 5th", "team1Id": 6159, "team2": "WDBA 5th", "team2Id": 6158, "team1Score": "23", "team2Score": "56", "time": "2015-03-22T15:00:00" }, { "id": 12034, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Cyclones 3rd", "team1Id": 6149, "team2": "Team Rush (Chisolm) 2nd", "team2Id": 6145, "team1Score": "22", "team2Score": "8", "time": "2015-03-22T15:15:00" }, { "id": 12162, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "MD Playmakers - Red 8th", "team1Id": 6186, "team2": "District Hoops 8th", "team2Id": 6192, "team1Score": "35", "team2Score": "34", "time": "2015-03-22T15:15:00" }, { "id": 12141, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "FAME Burgundy 6th", "team1Id": 6169, "team2": "Laurel Lakers 6th", "team2Id": 6170, "team1Score": "16", "team2Score": "36", "time": "2015-03-22T15:15:00" }, { "id": 12052, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "BALT SUPREME 7th", "team1Id": 6176, "team2": "Nova 94 Feet, 7th", "team2Id": 6173, "team1Score": "35", "team2Score": "34", "time": "2015-03-22T15:15:00" }, { "id": 12159, "location": "N Laurel Comm. Ctr Ct. 6", "locationId": "loc-6", "team1": "Team Flight 7th", "team1Id": 6184, "team2": "Cyclones B 7th", "team2Id": 6185, "team1Score": "74", "team2Score": "12", "time": "2015-03-22T16:00:00" }, { "id": 12132, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Team Ultimate 5th", "team1Id": 6156, "team2": "Warriors 5th", "team2Id": 6155, "team1Score": "43", "team2Score": "20", "time": "2015-03-22T16:00:00" }, { "id": 12163, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Bolt 7th", "team1Id": 6178, "team2": "Columbia Ravens 6th", "team2Id": 6166, "team1Score": "37", "team2Score": "39", "time": "2015-03-22T16:15:00" }, { "id": 12142, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Maryland Motion 6th", "team1Id": 6167, "team2": "HC Elite Green 6th", "team2Id": 6164, "team1Score": "34", "team2Score": "46", "time": "2015-03-22T16:15:00" }, { "id": 12156, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "Millersville Blue Devils 10th", "team1Id": 6199, "team2": "URBANA ELITE 10th", "team2Id": 6201, "team1Score": "30", "team2Score": "34", "time": "2015-03-22T16:15:00" }, { "id": 12139, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Team Dedication 6th", "team1Id": 6165, "team2": "Westminster Travel 6th", "team2Id": 6168, "team1Score": "58", "team2Score": "18", "time": "2015-03-22T16:15:00" }, { "id": 12386, "location": "N Laurel Comm. Ctr Ct. 5", "locationId": "loc-5", "team1": "Pikesville Panthers", "team1Id": 6212, "team2": "Team Dedication 4th", "team2Id": 6151, "team1Score": "28", "team2Score": "7", "time": "2015-03-22T17:00:00" }, { "id": 12160, "location": "Meadowbrook Ct. 2", "locationId": "loc-2", "team1": "Columbia Ravens 8th", "team1Id": 6188, "team2": "HC Elite (Phillips) 8th", "team2Id": 6191, "team1Score": "47", "team2Score": "41", "time": "2015-03-22T17:30:00" }, { "id": 12033, "location": "Meadowbrook Ct. 1", "locationId": "loc-1", "team1": "HC Elite Green 11th", "team1Id": 6204, "team2": "Red Branch Warriors", "team2Id": 6209, "team1Score": "72", "team2Score": "39", "time": "2015-03-22T17:30:00" }, { "id": 12153, "location": "Meadowbrook Ct. 4", "locationId": "loc-4", "team1": "Hoopmasters 10th", "team1Id": 6196, "team2": "Team Dedication 9th", "team2Id": 6195, "team1Score": "55", "team2Score": "49", "time": "2015-03-22T17:30:00" }, { "id": 12155, "location": "Meadowbrook Ct. 3", "locationId": "loc-3", "team1": "Columbia Ravens 11th", "team1Id": 6205, "team2": "Hebron Vikings", "team2Id": 6211, "team1Score": "71", "team2Score": "47", "time": "2015-03-22T17:30:00" } ], "locations": { "loc-1": { "name": "Meadowbrook Ct. 1", "latitude": 39.248958, "longitude": -76.822041 }, "loc-2": { "name": "Meadowbrook Ct. 2", "latitude": 39.248958, "longitude": -76.822041 }, "loc-3": { "name": "Meadowbrook Ct. 3", "latitude": 39.248958, "longitude": -76.822041 }, "loc-4": { "name": "Meadowbrook Ct. 4", "latitude": 39.248958, "longitude": -76.822041 } }, "standings": [ { "teamId": 6148, "teamName": "Sharks 3rd", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 97, "pointsAgainst": 68, "pointsDiff": 29, "division": "3rd" }, { "teamId": 6146, "teamName": "NOVA 94 FEET 2nd", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 112, "pointsAgainst": 65, "pointsDiff": 47, "division": "3rd" }, { "teamId": 6210, "teamName": "Madison Bucs 3rd", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 100, "pointsAgainst": 69, "pointsDiff": 31, "division": "3rd" }, { "teamId": 6149, "teamName": "Cyclones 3rd", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 51, "pointsAgainst": 75, "pointsDiff": -24, "division": "3rd" }, { "teamId": 6147, "teamName": "HC ELITE Dreish 2nd", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 73, "pointsAgainst": 105, "pointsDiff": -32, "division": "3rd" }, { "teamId": 6145, "teamName": "Team Rush (Chisolm) 2nd", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 44, "pointsAgainst": 95, "pointsDiff": -51, "division": "3rd" }, { "teamId": 6158, "teamName": "WDBA 5th", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 205, "pointsAgainst": 98, "pointsDiff": 107, "division": "5th Black" }, { "teamId": 6159, "teamName": "Sharks 5th", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 114, "pointsAgainst": 126, "pointsDiff": -12, "division": "5th Black" }, { "teamId": 6157, "teamName": "Baltimore Elite 5th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 151, "pointsAgainst": 130, "pointsDiff": 21, "division": "5th Black" }, { "teamId": 6154, "teamName": "Harundale Knights 5th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 117, "pointsAgainst": 127, "pointsDiff": -10, "division": "5th Black" }, { "teamId": 6160, "teamName": "Laurel Lakers 5th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 93, "pointsAgainst": 138, "pointsDiff": -45, "division": "5th Black" }, { "teamId": 6153, "teamName": "FAME Gold 5th", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 78, "pointsAgainst": 139, "pointsDiff": -61, "division": "5th Black" }, { "teamId": 6156, "teamName": "Team Ultimate 5th", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 191, "pointsAgainst": 78, "pointsDiff": 113, "division": "5th White" }, { "teamId": 6150, "teamName": "TEAM Severn Elite 5th", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 220, "pointsAgainst": 114, "pointsDiff": 106, "division": "5th White" }, { "teamId": 6152, "teamName": "Reisterstown Wolfpack 5th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 168, "pointsAgainst": 138, "pointsDiff": 30, "division": "5th White" }, { "teamId": 6161, "teamName": "Randallstown Running Rebels 5th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 135, "pointsAgainst": 127, "pointsDiff": 8, "division": "5th White" }, { "teamId": 6212, "teamName": "Pikesville Panthers", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 86, "pointsAgainst": 142, "pointsDiff": -56, "division": "5th White" }, { "teamId": 6155, "teamName": "Warriors 5th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 91, "pointsAgainst": 170, "pointsDiff": -79, "division": "5th White" }, { "teamId": 6151, "teamName": "Team Dedication 4th", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 40, "pointsAgainst": 162, "pointsDiff": -122, "division": "5th White" }, { "teamId": 6171, "teamName": "Virginia Hurricanes 6th", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 245, "pointsAgainst": 153, "pointsDiff": 92, "division": "6th Black" }, { "teamId": 6163, "teamName": "HC Elite White 6th", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 227, "pointsAgainst": 186, "pointsDiff": 41, "division": "6th Black" }, { "teamId": 6166, "teamName": "Columbia Ravens 6th", "wins": 3, "losses": 2, "winningPct": ".600", "pointsFor": 199, "pointsAgainst": 190, "pointsDiff": 9, "division": "6th Black" }, { "teamId": 6172, "teamName": "Pikesville Panthers 6th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 133, "pointsAgainst": 189, "pointsDiff": -56, "division": "6th Black" }, { "teamId": 6162, "teamName": "FAME Gold 6th", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 121, "pointsAgainst": 205, "pointsDiff": -84, "division": "6th Black" }, { "teamId": 6164, "teamName": "HC Elite Green 6th", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 203, "pointsAgainst": 111, "pointsDiff": 92, "division": "6th White" }, { "teamId": 6165, "teamName": "Team Dedication 6th", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 189, "pointsAgainst": 97, "pointsDiff": 92, "division": "6th White" }, { "teamId": 6167, "teamName": "Maryland Motion 6th", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 184, "pointsAgainst": 118, "pointsDiff": 66, "division": "6th White" }, { "teamId": 6170, "teamName": "Laurel Lakers 6th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 103, "pointsAgainst": 156, "pointsDiff": -53, "division": "6th White" }, { "teamId": 6168, "teamName": "Westminster Travel 6th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 115, "pointsAgainst": 217, "pointsDiff": -102, "division": "6th White" }, { "teamId": 6169, "teamName": "FAME Burgundy 6th", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 92, "pointsAgainst": 187, "pointsDiff": -95, "division": "6th White" }, { "teamId": 6182, "teamName": "HC Elite 7th", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 170, "pointsAgainst": 105, "pointsDiff": 65, "division": "7th Black" }, { "teamId": 6173, "teamName": "Nova 94 Feet, 7th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 195, "pointsAgainst": 156, "pointsDiff": 39, "division": "7th Black" }, { "teamId": 6176, "teamName": "BALT SUPREME 7th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 140, "pointsAgainst": 152, "pointsDiff": -12, "division": "7th Black" }, { "teamId": 6177, "teamName": "Cyclones A 7th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 175, "pointsAgainst": 208, "pointsDiff": -33, "division": "7th Black" }, { "teamId": 6179, "teamName": "Maryland 3D 7th", "wins": 2, "losses": 3, "winningPct": ".400", "pointsFor": 185, "pointsAgainst": 183, "pointsDiff": 2, "division": "7th Black" }, { "teamId": 6175, "teamName": "MADE Elite 7th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 178, "pointsAgainst": 210, "pointsDiff": -32, "division": "7th Black" }, { "teamId": 6183, "teamName": "SMD Heat 7th", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 226, "pointsAgainst": 154, "pointsDiff": 72, "division": "7th White" }, { "teamId": 6174, "teamName": "Columbia Ravens 7th", "wins": 4, "losses": 1, "winningPct": ".800", "pointsFor": 189, "pointsAgainst": 119, "pointsDiff": 70, "division": "7th White" }, { "teamId": 6184, "teamName": "Team Flight 7th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 218, "pointsAgainst": 129, "pointsDiff": 89, "division": "7th White" }, { "teamId": 6180, "teamName": "WHC Force 7th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 170, "pointsAgainst": 148, "pointsDiff": 22, "division": "7th White" }, { "teamId": 6181, "teamName": "JPYO Sonics 7th", "wins": 0, "losses": 1, "winningPct": ".000", "pointsFor": 10, "pointsAgainst": 30, "pointsDiff": -20, "division": "7th White" }, { "teamId": 6178, "teamName": "Bolt 7th", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 139, "pointsAgainst": 211, "pointsDiff": -72, "division": "7th White" }, { "teamId": 6185, "teamName": "Cyclones B 7th", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 69, "pointsAgainst": 261, "pointsDiff": -192, "division": "7th White" }, { "teamId": 6188, "teamName": "Columbia Ravens 8th", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 240, "pointsAgainst": 163, "pointsDiff": 77, "division": "8th" }, { "teamId": 6191, "teamName": "HC Elite (Phillips) 8th", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 215, "pointsAgainst": 153, "pointsDiff": 62, "division": "8th" }, { "teamId": 6186, "teamName": "MD Playmakers - Red 8th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 170, "pointsAgainst": 163, "pointsDiff": 7, "division": "8th" }, { "teamId": 6192, "teamName": "District Hoops 8th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 158, "pointsAgainst": 156, "pointsDiff": 2, "division": "8th" }, { "teamId": 6190, "teamName": "Team Dedication 8th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 182, "pointsAgainst": 197, "pointsDiff": -15, "division": "8th" }, { "teamId": 6189, "teamName": "Howard Unite Elite 8th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 172, "pointsAgainst": 212, "pointsDiff": -40, "division": "8th" }, { "teamId": 6187, "teamName": "Glenwood 8th", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 144, "pointsAgainst": 237, "pointsDiff": -93, "division": "8th" }, { "teamId": 6197, "teamName": "HC Elite Tringali 10th", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 193, "pointsAgainst": 104, "pointsDiff": 89, "division": "HS 10th Black" }, { "teamId": 6198, "teamName": "Loudoun Xtreme Force 10th", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 189, "pointsAgainst": 126, "pointsDiff": 63, "division": "HS 10th Black" }, { "teamId": 6199, "teamName": "Millersville Blue Devils 10th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 151, "pointsAgainst": 137, "pointsDiff": 14, "division": "HS 10th Black" }, { "teamId": 6201, "teamName": "URBANA ELITE 10th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 151, "pointsAgainst": 188, "pointsDiff": -37, "division": "HS 10th Black" }, { "teamId": 6200, "teamName": "Heat Wave 10th", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 87, "pointsAgainst": 216, "pointsDiff": -129, "division": "HS 10th Black" }, { "teamId": 6194, "teamName": "HC Elite 9th", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 201, "pointsAgainst": 140, "pointsDiff": 61, "division": "HS 10th White" }, { "teamId": 6196, "teamName": "Hoopmasters 10th", "wins": 4, "losses": 0, "winningPct": "1.000", "pointsFor": 178, "pointsAgainst": 150, "pointsDiff": 28, "division": "HS 10th White" }, { "teamId": 6195, "teamName": "Team Dedication 9th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 164, "pointsAgainst": 173, "pointsDiff": -9, "division": "HS 10th White" }, { "teamId": 6193, "teamName": "Columbia Ravens 9th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 146, "pointsAgainst": 141, "pointsDiff": 5, "division": "HS 10th White" }, { "teamId": 6203, "teamName": "Carroll Bball Club- Selby 10th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 179, "pointsAgainst": 215, "pointsDiff": -36, "division": "HS 10th White" }, { "teamId": 6202, "teamName": "HC Elite - Thai 10th", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 135, "pointsAgainst": 184, "pointsDiff": -49, "division": "HS 10th White" }, { "teamId": 6207, "teamName": "HC Elite White 11th", "wins": 5, "losses": 0, "winningPct": "1.000", "pointsFor": 350, "pointsAgainst": 231, "pointsDiff": 119, "division": "HS 11th" }, { "teamId": 6208, "teamName": "Lake Shore", "wins": 3, "losses": 1, "winningPct": ".750", "pointsFor": 197, "pointsAgainst": 177, "pointsDiff": 20, "division": "HS 11th" }, { "teamId": 6205, "teamName": "Columbia Ravens 11th", "wins": 3, "losses": 2, "winningPct": ".600", "pointsFor": 265, "pointsAgainst": 210, "pointsDiff": 55, "division": "HS 11th" }, { "teamId": 6204, "teamName": "HC Elite Green 11th", "wins": 2, "losses": 2, "winningPct": ".500", "pointsFor": 216, "pointsAgainst": 181, "pointsDiff": 35, "division": "HS 11th" }, { "teamId": 6206, "teamName": "PDE Running Suns 11th", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 183, "pointsAgainst": 248, "pointsDiff": -65, "division": "HS 11th" }, { "teamId": 6211, "teamName": "Hebron Vikings", "wins": 1, "losses": 3, "winningPct": ".250", "pointsFor": 214, "pointsAgainst": 292, "pointsDiff": -78, "division": "HS 11th" }, { "teamId": 6209, "teamName": "Red Branch Warriors", "wins": 0, "losses": 4, "winningPct": ".000", "pointsFor": 177, "pointsAgainst": 263, "pointsDiff": -86, "division": "HS 11th" } ], "teams": [ { "id": 6149, "name": "Cyclones 3rd", "coach": "Glenn Nelson ", "division": "3rd" }, { "id": 6147, "name": "HC ELITE Dreish 2nd", "coach": "Frank Dreisch", "division": "3rd" }, { "id": 6210, "name": "Madison Bucs 3rd", "coach": "Derrick", "division": "3rd" }, { "id": 6146, "name": "NOVA 94 FEET 2nd", "coach": "BRYANT LEE", "division": "3rd" }, { "id": 6148, "name": "Sharks 3rd", "coach": "David Crabtree", "division": "3rd" }, { "id": 6145, "name": "Team Rush (Chisolm) 2nd", "coach": "Brian Chisolm", "division": "3rd" }, { "id": 6157, "name": "Baltimore Elite 5th", "coach": "Brian Jackson", "division": "5th Black" }, { "id": 6153, "name": "FAME Gold 5th", "coach": "Steve Troffkin", "division": "5th Black" }, { "id": 6154, "name": "Harundale Knights 5th", "coach": "Michael Bender", "division": "5th Black" }, { "id": 6160, "name": "Laurel Lakers 5th", "coach": "Maynard Murray", "division": "5th Black" }, { "id": 6159, "name": "Sharks 5th", "coach": "Tookes", "division": "5th Black" }, { "id": 6158, "name": "WDBA 5th", "coach": "Al Boggs", "division": "5th Black" }, { "id": 6212, "name": "Pikesville Panthers", "coach": "Jamaal", "division": "5th White" }, { "id": 6161, "name": "Randallstown Running Rebels 5th", "coach": "Charles Wilson 3rd ", "division": "5th White" }, { "id": 6152, "name": "Reisterstown Wolfpack 5th", "coach": "Stephen Goldstein", "division": "5th White" }, { "id": 6151, "name": "Team Dedication 4th", "coach": "Infinite Supreme", "division": "5th White" }, { "id": 6150, "name": "TEAM Severn Elite 5th", "coach": "Coach", "division": "5th White" }, { "id": 6156, "name": "Team Ultimate 5th", "coach": "Kosa So", "division": "5th White" }, { "id": 6155, "name": "Warriors 5th", "coach": "Scott Obitts", "division": "5th White" }, { "id": 6166, "name": "Columbia Ravens 6th", "coach": "John Miller", "division": "6th Black" }, { "id": 6162, "name": "FAME Gold 6th", "coach": "Dana Harris", "division": "6th Black" }, { "id": 6163, "name": "HC Elite White 6th", "coach": "James Stefan", "division": "6th Black" }, { "id": 6172, "name": "Pikesville Panthers 6th", "coach": "Anthony Adams", "division": "6th Black" }, { "id": 6171, "name": "Virginia Hurricanes 6th", "coach": "Jonathan Heslep", "division": "6th Black" }, { "id": 6169, "name": "FAME Burgundy 6th", "coach": "Steve Troffkin", "division": "6th White" }, { "id": 6164, "name": "HC Elite Green 6th", "coach": "Eddie OMalley", "division": "6th White" }, { "id": 6170, "name": "Laurel Lakers 6th", "coach": "John Graham", "division": "6th White" }, { "id": 6167, "name": "Maryland Motion 6th", "coach": "Larry mandelbaum", "division": "6th White" }, { "id": 6165, "name": "Team Dedication 6th", "coach": "Don Carpenter", "division": "6th White" }, { "id": 6168, "name": "Westminster Travel 6th", "coach": "Jeremy Snyder", "division": "6th White" }, { "id": 6176, "name": "BALT SUPREME 7th", "coach": "RON ", "division": "7th Black" }, { "id": 6177, "name": "Cyclones A 7th", "coach": "Joe Alendar", "division": "7th Black" }, { "id": 6182, "name": "HC Elite 7th", "coach": "Steve Michelotti", "division": "7th Black" }, { "id": 6175, "name": "MADE Elite 7th", "coach": "Jason Millison", "division": "7th Black" }, { "id": 6179, "name": "Maryland 3D 7th", "coach": "Brian Bieman", "division": "7th Black" }, { "id": 6173, "name": "Nova 94 Feet, 7th", "coach": "Bob Farkas", "division": "7th Black" }, { "id": 6178, "name": "Bolt 7th", "coach": "Kevin Wyandt", "division": "7th White" }, { "id": 6185, "name": "Cyclones B 7th", "coach": "Joe Alendar", "division": "7th White" }, { "id": 6174, "name": "Columbia Ravens 7th", "coach": "Tim Swartz ", "division": "7th White" }, { "id": 6181, "name": "JPYO Sonics 7th", "coach": "John Sellman Jr ", "division": "7th White" }, { "id": 6183, "name": "SMD Heat 7th", "coach": "Coach Troy", "division": "7th White" }, { "id": 6184, "name": "Team Flight 7th", "coach": "Rock Hetherington", "division": "7th White" }, { "id": 6180, "name": "WHC Force 7th", "coach": "Percy Moore", "division": "7th White" }, { "id": 6188, "name": "Columbia Ravens 8th", "coach": "Dan Paugh", "division": "8th" }, { "id": 6192, "name": "District Hoops 8th", "coach": "", "division": "8th" }, { "id": 6187, "name": "Glenwood 8th", "coach": "Bob Trawick", "division": "8th" }, { "id": 6191, "name": "HC Elite (Phillips) 8th", "coach": "Bill Phillips", "division": "8th" }, { "id": 6189, "name": "Howard Unite Elite 8th", "coach": "Ken Clark", "division": "8th" }, { "id": 6186, "name": "MD Playmakers - Red 8th", "coach": "Desmin Wade", "division": "8th" }, { "id": 6190, "name": "Team Dedication 8th", "coach": "Tim Hale", "division": "8th" }, { "id": 6197, "name": "HC Elite Tringali 10th", "coach": "Chris Tringali", "division": "HS 10th Black" }, { "id": 6200, "name": "Heat Wave 10th", "coach": "Leon Thornton Jr.", "division": "HS 10th Black" }, { "id": 6198, "name": "Loudoun Xtreme Force 10th", "coach": "Mike Lohneis", "division": "HS 10th Black" }, { "id": 6199, "name": "Millersville Blue Devils 10th", "coach": "Owen Gaither", "division": "HS 10th Black" }, { "id": 6201, "name": "URBANA ELITE 10th", "coach": "JIM NOLAN", "division": "HS 10th Black" }, { "id": 6203, "name": "Carroll Bball Club- Selby 10th", "coach": "Fred Selby", "division": "HS 10th White" }, { "id": 6193, "name": "Columbia Ravens 9th", "coach": "Jeff Cross", "division": "HS 10th White" }, { "id": 6202, "name": "HC Elite - Thai 10th", "coach": "gary thai", "division": "HS 10th White" }, { "id": 6194, "name": "HC Elite 9th", "coach": "Corey Eudell", "division": "HS 10th White" }, { "id": 6196, "name": "Hoopmasters 10th", "coach": "Scott Cole", "division": "HS 10th White" }, { "id": 6195, "name": "Team Dedication 9th", "coach": "Dennis Kirkland", "division": "HS 10th White" }, { "id": 6205, "name": "Columbia Ravens 11th", "coach": "Dan Ingersol", "division": "HS 11th" }, { "id": 6204, "name": "HC Elite Green 11th", "coach": "Mike Hightower", "division": "HS 11th" }, { "id": 6207, "name": "HC Elite White 11th", "coach": "James Stefan", "division": "HS 11th" }, { "id": 6211, "name": "Hebron Vikings", "coach": "Dan Smith", "division": "HS 11th" }, { "id": 6208, "name": "Lake Shore", "coach": "Brian Brady", "division": "HS 11th" }, { "id": 6206, "name": "PDE Running Suns 11th", "coach": "Bryan Aybar", "division": "HS 11th" }, { "id": 6209, "name": "Red Branch Warriors", "coach": "Aubrey A Adams", "division": "HS 11th" } ] } } } ================================================ FILE: data-files/readme.md ================================================ # Data Files The elite-schedule-firebase-data.json file provides seed data for your Firebase instance. ================================================ FILE: image-files/readme.md ================================================ # Image Files The image files found in this directory can be used to generate the app icon and splash screen, as shown in the final module of the course. ================================================ FILE: sql-storage/readme.md ================================================ # SQL Storage with SQLite The SqlStorage component was removed between the final Ionic 2 beta and the Ionic 2 RC release. The `user-settings.service.ts` file in this directory shows and example implementation of the `user-settings.service.ts` file shown in the course. The file uses several `if` statements to make it very obvious what is going on. It is also created in such a way that you can run it in the browser via `ionic serve` and it will fall back to work with local storage since SQLite is not available in the browser. It will use SQLite (via the SQLite Ionic Native plugin) when running on an actual device. ================================================ FILE: sql-storage/user-settings.service.ts ================================================ import { Injectable } from '@angular/core'; import { Events } from 'ionic-angular'; import { Storage } from '@ionic/storage'; import { SQLite } from 'ionic-native'; import { SqlStorage } from './shared'; const win: any = window; @Injectable() export class UserSettings { //storage = new Storage(SqlStorage); public db: SQLite; public sql: SqlStorage; constructor(public events: Events, public storage: Storage) { if (win.sqlitePlugin) { this.sql = new SqlStorage(); } else { console.warn('SQLite plugin not installed. Falling back to regular Ionic Storage.'); } } favoriteTeam(team, tournamentId, tournamentName) { let item = { team: team, tournamentId: tournamentId, tournamentName: tournamentName }; if (this.sql){ this.sql.set(team.id.toString(), JSON.stringify(item)).then(data => { this.events.publish('favorites:changed'); }); } else { return new Promise(resolve => { this.storage.set(team.id.toString(), JSON.stringify(item)).then(() => { this.events.publish('favorites:changed'); resolve(); }); }); } } unfavoriteTeam(team) { if (this.sql){ this.sql.remove(team.id.toString()).then(data => { this.events.publish('favorites:changed'); }); } else { return new Promise(resolve => { this.storage.remove(team.id.toString()).then(() => { this.events.publish('favorites:changed'); resolve(); }); }); } } isFavoriteTeam(teamId) { if (this.sql){ return this.sql.get(teamId.toString()).then(value => value ? true : false); } else { return new Promise(resolve => resolve(this.storage.get(teamId.toString()).then(value => value ? true : false))); } } getAllFavorites(){ if (this.sql){ return this.sql.getAll(); } else { return new Promise(resolve => { let results = []; this.storage.forEach(data => { results.push(JSON.parse(data)); }); return resolve(results); }); } } initStorage(){ if (this.sql){ return this.sql.initializeDatabase(); } else { return new Promise(resolve => resolve()); } } }