From 5448dac14df8f80f14d54c0bef7d8a4d35d4022b Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 16:55:54 -0400 Subject: [PATCH 01/32] [MINOR] Updated version for next release --- android-app/app/build.gradle | 4 +-- .../drawable-v24/ic_launcher_foreground.xml | 30 ------------------- 2 files changed, 2 insertions(+), 32 deletions(-) delete mode 100644 android-app/app/src/main/res/drawable-v24/ic_launcher_foreground.xml diff --git a/android-app/app/build.gradle b/android-app/app/build.gradle index b69e6a5..aa632e1 100644 --- a/android-app/app/build.gradle +++ b/android-app/app/build.gradle @@ -20,8 +20,8 @@ android { applicationId "com.blacklivesmatter.policebrutality" minSdkVersion rootProject.minSdkVersion targetSdkVersion rootProject.targetSdkVersion - versionCode 3 - versionName "1.2" + versionCode 4 + versionName "1.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" diff --git a/android-app/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/android-app/app/src/main/res/drawable-v24/ic_launcher_foreground.xml deleted file mode 100644 index 2b068d1..0000000 --- a/android-app/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - \ No newline at end of file From 5d4fb482c5028490880c0a438a64e1f0d1fd460e Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 17:05:30 -0400 Subject: [PATCH 02/32] [UPDATE] #16 enabled progruad for release builds --- android-app/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android-app/app/build.gradle b/android-app/app/build.gradle index aa632e1..9d43b73 100644 --- a/android-app/app/build.gradle +++ b/android-app/app/build.gradle @@ -48,7 +48,7 @@ android { buildTypes { release { - minifyEnabled false + minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' signingConfig signingConfigs.config } From 5ce07e6bcac8dbd1cfc98de97a99ddfcb2e4f716 Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 17:05:52 -0400 Subject: [PATCH 03/32] [MINOR] Cleanup main activity with some docs --- .../policebrutality/MainActivity.kt | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/MainActivity.kt b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/MainActivity.kt index 3236da6..8dc1a22 100644 --- a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/MainActivity.kt +++ b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/MainActivity.kt @@ -4,13 +4,16 @@ import android.os.Bundle import androidx.databinding.DataBindingUtil import androidx.lifecycle.ViewModelProvider import androidx.navigation.findNavController -import androidx.navigation.ui.AppBarConfiguration import androidx.navigation.ui.setupWithNavController import com.blacklivesmatter.policebrutality.databinding.ActivityMainBinding import com.google.android.material.bottomnavigation.BottomNavigationView import dagger.android.support.DaggerAppCompatActivity import javax.inject.Inject +/** + * The container activity for the app using "single-activity" pattern. + * This activity hosts fragments and the flow is managed by AndroidX Jetpack navigation library. + */ class MainActivity : DaggerAppCompatActivity() { @Inject @@ -27,16 +30,6 @@ class MainActivity : DaggerAppCompatActivity() { val navView: BottomNavigationView = findViewById(R.id.nav_view) val navController = findNavController(R.id.nav_host_fragment) - // Passing each menu ID as a set of Ids because each - // menu should be considered as top level destinations. - val appBarConfiguration = AppBarConfiguration( - setOf( - R.id.navigation_menu_incident, - R.id.navigation_menu_report, - R.id.navigation_menu_more_info - ) - ) - // setupActionBarWithNavController(navController, appBarConfiguration) navView.setupWithNavController(navController) } } From b7dfd94c02caaee1c13d7565eb853c1c510a29be Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 17:09:35 -0400 Subject: [PATCH 04/32] [UPDATE] Enabled proguard and shrinking Fixes #16 --- android-app/app/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android-app/app/build.gradle b/android-app/app/build.gradle index 9d43b73..f481689 100644 --- a/android-app/app/build.gradle +++ b/android-app/app/build.gradle @@ -48,7 +48,9 @@ android { buildTypes { release { - minifyEnabled true + // https://developer.android.com/studio/build/shrink-code + minifyEnabled true // Enables code shrinking, obfuscation, and optimization + shrinkResources true // Enables resource shrinking proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' signingConfig signingConfigs.config } From 53cb19a3b669398bd4abff3eb7c232b6e03d88fb Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 17:20:07 -0400 Subject: [PATCH 05/32] [ADDED] #16 Keep rule for model classes --- .../blacklivesmatter/policebrutality/data/model/Incident.kt | 2 ++ .../policebrutality/data/model/IncidentsSource.kt | 3 +++ .../blacklivesmatter/policebrutality/data/model/LinkInfo.kt | 2 ++ .../policebrutality/data/model/LocationIncidents.kt | 2 ++ 4 files changed, 9 insertions(+) diff --git a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/Incident.kt b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/Incident.kt index e796bd8..f8bddfc 100644 --- a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/Incident.kt +++ b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/Incident.kt @@ -1,5 +1,6 @@ package com.blacklivesmatter.policebrutality.data.model +import androidx.annotation.Keep import androidx.room.ColumnInfo import androidx.room.Entity import androidx.room.PrimaryKey @@ -27,6 +28,7 @@ import com.google.gson.annotations.SerializedName * } * ``` */ +@Keep @Entity(tableName = "incidents") data class Incident( @PrimaryKey(autoGenerate = true) diff --git a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/IncidentsSource.kt b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/IncidentsSource.kt index cf3ad46..7467d3a 100644 --- a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/IncidentsSource.kt +++ b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/IncidentsSource.kt @@ -1,5 +1,7 @@ package com.blacklivesmatter.policebrutality.data.model +import androidx.annotation.Keep + /** * Container object for list of [Incident]s. * Example data: @@ -12,6 +14,7 @@ package com.blacklivesmatter.policebrutality.data.model * } * ``` */ +@Keep data class IncidentsSource constructor( val edit_at: String = "", val help: String = "", diff --git a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/LinkInfo.kt b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/LinkInfo.kt index 5b7dc30..bcdcdc2 100644 --- a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/LinkInfo.kt +++ b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/LinkInfo.kt @@ -1,8 +1,10 @@ package com.blacklivesmatter.policebrutality.data.model import androidx.annotation.DrawableRes +import androidx.annotation.Keep import com.blacklivesmatter.policebrutality.R +@Keep data class LinkInfo constructor( /** * Original source URL. diff --git a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/LocationIncidents.kt b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/LocationIncidents.kt index c0b2c01..d9b2901 100644 --- a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/LocationIncidents.kt +++ b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/LocationIncidents.kt @@ -1,5 +1,6 @@ package com.blacklivesmatter.policebrutality.data.model +import androidx.annotation.Keep import androidx.room.ColumnInfo /** @@ -7,6 +8,7 @@ import androidx.room.ColumnInfo * * See https://developer.android.com/training/data-storage/room/accessing-data#query-subset-cols */ +@Keep data class LocationIncidents constructor( @ColumnInfo(name = "state") val stateName: String, @ColumnInfo(name = "total_incidents") val totalIncidents: Int From d980ff2c3e745d276fc549362aa7a67d10ca9aac Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 17:44:41 -0400 Subject: [PATCH 06/32] [ADDED] Latest data snapshot before working on REST API --- .../3.json | 82 + .../main/assets/all_locations_fallback.json | 2 +- .../policebrutality/data/AppDatabase.kt | 2 +- .../all-locations-2020.06.09-05pm.json | 3846 +++++++++++++++++ 4 files changed, 3930 insertions(+), 2 deletions(-) create mode 100644 android-app/app/schemas/com.blacklivesmatter.policebrutality.data.AppDatabase/3.json create mode 100644 resources/api-data-snapshot/all-locations-2020.06.09-05pm.json diff --git a/android-app/app/schemas/com.blacklivesmatter.policebrutality.data.AppDatabase/3.json b/android-app/app/schemas/com.blacklivesmatter.policebrutality.data.AppDatabase/3.json new file mode 100644 index 0000000..4f992b8 --- /dev/null +++ b/android-app/app/schemas/com.blacklivesmatter.policebrutality.data.AppDatabase/3.json @@ -0,0 +1,82 @@ +{ + "formatVersion": 1, + "database": { + "version": 3, + "identityHash": "a6e8d2dedfed1c349fbc1f85a78b8ab8", + "entities": [ + { + "tableName": "incidents", + "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`_id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `incident_id` TEXT, `state` TEXT, `edit_url` TEXT, `city` TEXT, `name` TEXT, `date` TEXT, `date_text` TEXT, `links` TEXT NOT NULL)", + "fields": [ + { + "fieldPath": "_id", + "columnName": "_id", + "affinity": "INTEGER", + "notNull": true + }, + { + "fieldPath": "incident_id", + "columnName": "incident_id", + "affinity": "TEXT", + "notNull": false + }, + { + "fieldPath": "state", + "columnName": "state", + "affinity": "TEXT", + "notNull": false + }, + { + "fieldPath": "edit_at", + "columnName": "edit_url", + "affinity": "TEXT", + "notNull": false + }, + { + "fieldPath": "city", + "columnName": "city", + "affinity": "TEXT", + "notNull": false + }, + { + "fieldPath": "name", + "columnName": "name", + "affinity": "TEXT", + "notNull": false + }, + { + "fieldPath": "date", + "columnName": "date", + "affinity": "TEXT", + "notNull": false + }, + { + "fieldPath": "date_text", + "columnName": "date_text", + "affinity": "TEXT", + "notNull": false + }, + { + "fieldPath": "links", + "columnName": "links", + "affinity": "TEXT", + "notNull": true + } + ], + "primaryKey": { + "columnNames": [ + "_id" + ], + "autoGenerate": true + }, + "indices": [], + "foreignKeys": [] + } + ], + "views": [], + "setupQueries": [ + "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)", + "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'a6e8d2dedfed1c349fbc1f85a78b8ab8')" + ] + } +} \ No newline at end of file diff --git a/android-app/app/src/main/assets/all_locations_fallback.json b/android-app/app/src/main/assets/all_locations_fallback.json index 7dda2fb..7e9de50 100644 --- a/android-app/app/src/main/assets/all_locations_fallback.json +++ b/android-app/app/src/main/assets/all_locations_fallback.json @@ -1 +1 @@ -{"edit_at": "https://github.com/2020PB/police-brutality", "help": "ask @ubershmekel on twitter", "updated_at": "2020-06-07T14:16:28.370861+00:00", "data": [{"links": ["https://twitter.com/courtenay_roche/status/1267653137969623040", "https://twitter.com/yagirlbrookie09/status/1267647898365427714", "https://www.4029tv.com/article/bentonville-police-deploy-tear-gas-on-protesters/32736629#"], "state": "Arkansas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Arkansas.md", "city": "Bentonville", "name": "Law enforcement gas a crowd chanting \u201cwe want peace\u201d right after exiting the building.", "date": "2020-06-01", "date_text": "June 1st", "id": "ar-bentonville-1"}, {"links": ["https://twitter.com/KATVShelby/status/1267554421019475972?s=20", "https://twitter.com/KATVNews/status/1267509911954440194"], "state": "Arkansas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Arkansas.md", "city": "Little Rock", "name": "Peaceful protestors kneeling are shot with an explosive projectile.", "date": "2020-05-31", "date_text": "May 31st", "id": "ar-littlerock-2"}, {"links": ["https://twitter.com/bubbaprog/status/1266908354821206016"], "state": "Utah", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", "city": "Salt Lake City", "name": "Police shove an old man with a cane to the ground", "date": "2020-05-30", "date_text": "May 30th", "id": "ut-saltlakecity-1"}, {"links": ["https://www.reddit.com/r/nextfuckinglevel/comments/gtv4co/downtown_salt_lake_city_may_30th_2020_unarmed/"], "state": "Utah", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", "city": "Salt Lake City", "name": "Police shoot man on the ground in the spine with a beanbag point-blank", "date": "2020-05-30", "date_text": "May 30th", "id": "ut-saltlakecity-2"}, {"links": ["https://twitter.com/greg_doucette/status/1268333029526843392", "https://www.instagram.com/p/CA148-0B14t6mQZqJZYzwq25KdoPzZ5CJmV3oQ0/"], "state": "Utah", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", "city": "Salt Lake City", "name": "Police shoot tear gas canister at man from close range, striking him in the chest", "date": "2020-05-30", "date_text": "May 30th", "id": "ut-saltlakecity-4"}, {"links": ["https://v.redd.it/fl4y919v1q251"], "state": "Utah", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", "city": "Salt Lake City", "name": "Police push and tackle man that is being vocal", "date": "2020-06-01", "date_text": "June 1st", "id": "ut-saltlakecity-3"}, {"links": ["https://twitter.com/CorinneAllen20/status/1268000716884283393", "https://twitter.com/CliffBraun/status/1268038070667849728"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Clayton", "name": "Law enforcement gas teenagers at a park", "date": "2020-06-02", "date_text": "June 2nd", "id": "ca-clayton-1"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gvdl01/they_secluded_him_behind_a_wall_and_looked_around/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Compton", "name": "Police beat person on the ground", "date": "2020-06-01", "date_text": "(believed to be) June 1st", "id": "ca-compton-1"}, {"links": ["https://old.reddit.com/r/orangecounty/comments/gvn42k/oc_sheriff_deputy_forgoing_his_name_badge_to_wear/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Costa Mesa", "name": "Law enforcement concealing badge", "date": "2020-06-03", "date_text": "June 3rd", "id": "ca-costa-mesa-1"}, {"links": ["https://twitter.com/AdoreDelano/status/1267688320735166465"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Hollywood", "name": "Law enforcement arrest people walking, you can hear on the radio \u201cYou should not be driving past anybody, stop and take somebody into custody\u201d.", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-hollywood-2"}, {"links": ["https://twitter.com/mamitbh/status/1267030342243778561"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "La Mesa", "name": "Law enforcement shoot and throw tear gas at protesters", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-lamesa-4"}, {"links": ["https://www.facebook.com/100010947670361/videos/1115087385532840", "https://mobile.twitter.com/MarajYikes/status/1267030131563827200", "https://mobile.twitter.com/chadloder/status/1267290221562871809/photo/1"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "La Mesa", "name": "Police shoot woman in the face", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-lamesa-3"}, {"links": ["https://laist.com/2020/05/31/reporters_injured_protests_police.php", "https://twitter.com/AGuzmanLopez/status/1267269781805137920"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Long Beach", "name": "Reporter shot in neck by rubber bullet", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-longbeach-5"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gxjk67/reposted_wo_officer_name_footage_of_lapd_at_last/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "LAPD officer beats multiple protesters that are filming them during a protest in Beverley Hills", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-losangeles-7"}, {"links": ["https://twitter.com/larryprincxpark/status/1266883515431505920", "https://twitter.com/kendrick38/status/1266997131430133761"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Los Angeles law enforcement beat protesters with batons", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-losangeles-9"}, {"links": ["https://twitter.com/GMA/status/1266934049098121216"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "ABC7 reporters are hit by tear gas", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-losangeles-10"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gxjk67/reposted_wo_officer_name_footage_of_lapd_at_last/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police beat protesters with batons", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-losangeles-11"}, {"links": ["https://twitter.com/MatthewSantoro/status/1266916709304201216"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police fire rubber/pepper bullets at innocent protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-12"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gturig/cop_has_his_knee_on_a_womans_neck_even_though/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police officer puts his knee on a protesters neck, is pulled off", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-13"}, {"links": ["https://twitter.com/SUNDAYLOVERBOY/status/1266890947888996352"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police shoot rubber bullets at protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-14"}, {"links": ["https://twitter.com/LowkeySinistra/status/1267109420955086848", "https://twitter.com/LowkeySinistra/status/1267871561714790401"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Man shot in the head with deterrent rounds, is sent to hospital", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-15"}, {"links": ["https://twitter.com/MattMcGorry/status/1267217360894562306"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Los Angeles law enforcement beat protesters for no apparent reason.", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-16"}, {"links": ["https://twitter.com/greg_doucette/status/1267095100166987778", "https://twitter.com/sleepydayhana/status/1266930544811671552"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police tackle and arrest protester, indiscriminately beat others with batons and shoot them with less lethals", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-17"}, {"links": ["https://twitter.com/greg_doucette/status/1267277826354556928", "https://twitter.com/SophiaLeeHyun/status/1267216604388978689", "https://twitter.com/chadloder/status/1267314138428014594", "https://v.redd.it/9aiytt50g6251/DASH_1080#mp4", "https://old.reddit.com/r/PublicFreakout/comments/gu8mqp/police_drives_into_protestors_in_los_angeles/", "https://old.reddit.com/r/gifs/comments/gu8inv/la_cop_car_rams_protester_on_live_tv_chopper/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "LAPD SUV drives into protesters, speeds away", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-18"}, {"links": ["https://twitter.com/cwellborn3/status/1267318753571811329"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Los Angeles law enforcement shot at a man on his own balcony", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-19"}, {"links": ["https://www.tiktok.com/@w17ard/video/6833082563913977093?lang=en"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police shoot crowd of unarmed protestors with rubber bullets", "date": "2020-05-31", "date_text": "Believed to be May 31st", "id": "ca-losangeles-22"}, {"links": ["https://streamable.com/ja2fw6", "https://www.reddit.com/r/PublicFreakout/comments/gv8vaw/lapd_beating_and_shooting_peaceful_protesters_for/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police strike protestors with batons", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-losangeles-20"}, {"links": ["https://twitter.com/liveinochi/status/1267504585926557696", "https://tikitoks.com/@jacksonmonroe/video/6833397689187716358"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police shoot rubber bullets at two peaceful protestors", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-losangeles-21"}, {"links": ["https://twitter.com/balleralert/status/1268014113105555456", "https://twitter.com/theweirdingwayy/status/1268048483920928768", "https://twitter.com/EarvinD/status/1268087279458775040", "https://abc7.com/deputies-shoot-pepper-balls-at-skateboarders-in-hollywood---video/6230652/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "LAPD drive by shootings at fleeing people announcing \"This is an illegal assembly\"", "date": "2020-06-02", "date_text": "June 2nd", "id": "ca-losangeles-6"}, {"links": ["https://www.reddit.com/r/LosAngeles/comments/gwzgn8/lapd_shoots_less_than_lethal_rounds_directly_at/", "https://www.dailynews.com/2020/06/03/dozens-arrested-in-downtown-los-angeles-tuesday-night-after-day-of-peaceful-protests/", "https://www.instagram.com/p/CBCiZXOlno4/", "https://twitter.com/Terminal_Redux/status/1268870944615026690"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police shoot unarmed man in a wheelchair in the face", "date": "2020-06-03", "date_text": "June 3rd", "id": "ca-losangeles-23"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gttdkj/cop_driving_into_crowds_of_protestors/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Oakland", "name": "Officer runs down protesters with police cruiser", "date": "2020-05-30", "date_text": "Believed to be May 30th", "id": "ca-oakland-24"}, {"links": ["https://twitter.com/SarahBelleLin/status/1266980899301683200"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Oakland", "name": "Oakland law enforcement shoot a reporter", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-oakland-25"}, {"links": ["https://old.reddit.com/r/PublicFreakout/comments/gv2lku/news_chopper_pans_out_as_riverside_county_sheriff/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Riverside", "name": "Law enforcement break a car window for no apparent reason", "date": "2020-06-02", "date_text": "June 2nd", "id": "ca-riverside-26"}, {"links": ["https://youtu.be/pRmBO34aXME", "https://twitter.com/mynameschazz/status/1266978442722947072?s=21"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Sacramento", "name": "Police shoot protester in the head", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-sacramento-27"}, {"links": ["https://www.facebook.com/danny.garza.167/videos/10222535335080905/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Sacramento", "name": "Sacramento law enforcement shoot shoot protesters and then announce their assembly unlawful", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-sacramento-28"}, {"links": ["https://twitter.com/greg_doucette/status/1268334584443342850", "https://twitter.com/reereeisme65/status/1267378345894789125"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Sacramento", "name": "Police choke man and push woman filming event to the ground", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-sacramento-29"}, {"links": ["https://twitter.com/greg_doucette/status/1269009907367493634"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Diego", "name": "Police abduct woman in unmarked van", "date": "2020-06-04", "date_text": "June 4th", "id": "ca-sandiego-30"}, {"links": ["https://twitter.com/junkieanteater/status/1266603252839141377", "https://www.reddit.com/r/PublicFreakout/comments/gtksgq/cop_decides_to_shoot_at_protestor_who_hurt_his/", "https://www.reddit.com/r/PublicFreakout/comments/gtg2cb/cop_waits_in_excitement_like_its_a_game/", "https://twitter.com/bowiezamudio/status/1266598285206106113", "https://twitter.com/kakimeows/status/1266982771005616128"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Jose", "name": "Police shoot a projectile at a protestor", "date": "2020-05-29", "date_text": "May 29th", "id": "ca-sanjose-31"}, {"links": ["https://twitter.com/YourAnonCentral/status/1266991237355069442"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Santa Ana", "name": "Police open fire on protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-santaana-32"}, {"links": ["https://twitter.com/ma7dz/status/1267697838244298752"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Luis Obispo", "name": "Law enforcement fire on crowd with their arms up chanting", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-sanluisobispo-33"}, {"links": ["https://twitter.com/caseylc9/status/1267285516262596608"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Francisco", "name": "San Francisco law enforcement shove man off the sidewalk onto the ground", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-sanfrancisco-34"}, {"links": ["https://twitter.com/GIFsZP/status/1267241803750813703"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Santa Monica", "name": "Police fire pepper bullets into apartment", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-santamonica-35"}, {"links": ["https://www.theguardian.com/us-news/2020/jun/04/vallejo-police-kill-unarmed-man-california"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Vallejo", "name": "Police fatally shoot unarmed 22 year old", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-vallejo-37"}, {"links": ["https://www.instagram.com/p/CA7KMc9pX5S/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Walnut Creek", "name": "Armored law enforcement vehicle threatens protestors", "date": "2020-06-02", "date_text": "June 2nd", "id": "ca-walnutcreek-36"}, {"links": ["https://www.kansascity.com/news/local/article243188436.html", "https://www.facebook.com/KuhlPics/photos/a.467614509924515/3214027235283215/?type=3&theater"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police pepper spray and arrest protestor holding sign", "date": "2020-05-30", "date_text": "May 30th", "id": "mo-kansascity-5"}, {"links": ["https://twitter.com/RayVaca/status/1266959833753890816", "https://twitter.com/whoareyoujudy_/status/1266968858159702017"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police pepper spray protestors walking away and later arrest one of them", "date": "2020-05-31", "date_text": "May 31st", "id": "mo-kansascity-6"}, {"links": ["https://twitter.com/imunoz03/status/1266908372881768448"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police tear gas a park", "date": "2020-05-31", "date_text": "May 31st", "id": "mo-kansascity-1"}, {"links": ["https://old.reddit.com/r/PublicFreakout/comments/guswxo/he_wasnt_even_addressing_the_police/"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Kansas City police attempt to arrest a man leading the protest then spray the crowd", "date": "2020-06-01", "date_text": "(Believed to be) June 1st", "id": "mo-kansascity-2"}, {"links": ["https://twitter.com/weslyinfinity/status/1267321172309544960?"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police arrest man for speaking and teargas nearby protestors", "date": "2020-06-01", "date_text": "June 1st", "id": "mo-kansascity-3"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gut8n1/in_kansas_city/"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police pullaway protestor and pepper sprays others", "date": "2020-06-01", "date_text": "June 1st", "id": "mo-kansascity-4"}, {"links": ["https://twitter.com/PhxProtestLIVE/status/1268390978571825156?s=20"], "state": "Arizona", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Arizona.md", "city": "Phoenix", "name": "Officer tackles and arrests person walking home from protest", "date": "2020-05-30", "date_text": "May 30th", "id": "az-phoenix-1"}, {"links": ["https://twitter.com/greg_doucette/status/1268235074580987906"], "state": "Iowa", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", "city": "Des Moines", "name": "Police use or threaten to use pepper-spray in an elevator on apartment residents trying to go home", "date": "2020-06-02", "date_text": "(believed to be) June 2nd", "id": "ia-desmoines-1"}, {"links": ["https://twitter.com/DJPAIMON/status/1268399580753858561"], "state": "Iowa", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", "city": "Iowa City", "name": "Police shoot tear gas at peaceful protestors who have their hands up", "date": "2020-06-03", "date_text": "June 3rd", "id": "ia-iowacity-2"}, {"links": ["https://twitter.com/itsraiialex/status/1266770032719040513"], "state": "Nevada", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nevada.md", "city": "Las Vegas", "name": "Police arrest a man for speaking at them from a distance.", "date": "2020-05-29", "date_text": "May 29th.", "id": "nv-lasvegas-3"}, {"links": ["https://twitter.com/LasVegasLocally/status/1267210841595604992", "https://www.instagram.com/p/CA14rooHIC6/?utm_source=ig_web_copy_link"], "state": "Nevada", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nevada.md", "city": "Las Vegas", "name": "Police shove and drag man through the street", "date": "2020-05-31", "date_text": "May 31st", "id": "nv-lasvegas-1"}, {"links": ["https://mobile.twitter.com/chadloder/status/1267168204863926274"], "state": "Nevada", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nevada.md", "city": "Las Vegas", "name": "Police charge into peaceful crowd shouting \"grab anybody\"", "date": "2020-06-01", "date_text": "June 1st", "id": "nv-lasvegas-2"}, {"links": ["https://twitter.com/Youbeenafannn/status/1268253924471037959"], "state": "Connecticut", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Connecticut.md", "city": "Waterbury", "name": "Officer forces women into car and wrestles with another", "date": "2020-06-03", "date_text": "June 3rd"}, {"links": ["https://twitter.com/mattaustinTV/status/1267189278691528706", "https://twitter.com/RACCEWtby/status/1268173057375514624", "https://twitter.com/Calibud_Art/status/1268274760250777600"], "state": "Connecticut", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Connecticut.md", "city": "Waterbury", "name": "Police tackle and detain 6 protestors", "date": "2020-05-31", "date_text": "May 31st"}, {"links": ["https://twitter.com/ItsKadynC/status/1266967646345613317", "https://twitter.com/the7goonies/status/1266989439160590336", "https://papost.org/2020/05/31/erie-woman-who-was-kicked-by-police-officer-saysi-was-100-percent-peaceful/"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Erie", "name": "Police officer maces woman and kicks her in the head", "date": "2020-05-31", "date_text": "May 31st", "id": "pa-erie-1"}, {"links": ["https://twitter.com/greg_doucette/status/1266862623041167362"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Harrisburg", "name": "Police pepperspray protesters helping someone stand up", "date": "2020-05-30", "date_text": "May 30th", "id": "pa-harrisburg-2"}, {"links": ["https://twitter.com/UR_Ninja/status/1266913490301792257"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police beat down man", "date": "2020-05-30", "date_text": "May 30th", "id": "pa-philadelphia-3"}, {"links": ["https://youtu.be/QDcCFN_LQPA"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police drag cooperating man from car and punch him in the face", "date": "", "date_text": "", "id": "pa-philadelphia-4"}, {"links": ["https://metro.co.uk/2020/06/01/cop-put-baton-george-floyd-protesters-hand-put-knee-neck-12789427/", "https://twitter.com/mkultranews/status/1267305587206807553"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Philadelphia cops beat man and forcefully put his fingers on their baton.", "date": "2020-05-31", "date_text": "May 31st", "id": "pa-philadelphia-5"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guve5f/philadelphia_police_traps_protesters_on_highway/", "https://twitter.com/bbcease/status/1267582823428501508", "https://www.youtube.com/watch?v=cXzWicPCNQg", "https://youtu.be/oCVe8mXOU94", "https://vimeo.com/425235774", "https://youtu.be/srC5l--cn14"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Philadelphia Police Trap Protesters on Highway, Then Tear Gas Them and Shoot Rubber Bullets", "date": "2020-06-01", "date_text": "June 1st", "id": "pa-philadelphia-6"}, {"links": ["https://twitter.com/d0wnrrrrr/status/1267691766188310528"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police officer pepper-sprays three people on their knees", "date": "2020-06-01", "date_text": "believed to be June 1st", "id": "pa-philadelphia-7"}, {"links": ["https://twitter.com/greg_doucette/status/1268200800649707526"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police kneel on man who says \"I can't breathe\", officer yells profanities back", "date": "2020-06-03", "date_text": "believed to be June 3rd", "id": "pa-philadelphia-8"}, {"links": ["https://twitter.com/greg_doucette/status/1268766216161763328", "https://twitter.com/Peopledelphia/status/1267588991655784448", "https://www.inquirer.com/news/philadelphia-police-beating-temple-student-joseph-bologna-protest-20200605.html", "https://whyy.org/articles/philly-police-commander-videotaped-beating-protesters-linked-to-narcotics-scandal-misconduct/"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police shove protestors and strike man across the face with a baton", "date": "2020-06-01", "date_text": "Jun 1st", "id": "pa-philadelphia-9"}, {"links": ["https://www.youtube.com/watch?v=TxHxU6nhzzQ", "https://twitter.com/PaulaReedWard/status/1268547369618026503", "https://www.post-gazette.com/news/crime-courts/2020/06/03/East-Liberty-protest-Abigail-Rubio-says-Pittsburgh-police-intimidated-video/stories/202006030158"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Pittsburgh", "name": "Officer pepper-sprays a woman who is on her knees with her hands up", "date": "", "date_text": "", "id": "pa-pittsburgh-10"}, {"links": ["https://www.reddit.com/r/pittsburgh/comments/guzshz/police_declaring_an_unlawful_assembly_against_a/", "https://www.facebook.com/BenjaminKFerris/posts/3091613010894973", "https://twitter.com/gautamyadav818/status/1267606317893550080"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Pittsburgh", "name": "Police fire tear gas and rubber bullets on peaceful assembly", "date": "2020-06-01", "date_text": "June 1st", "id": "pa-pittsburgh-11"}, {"links": ["https://twitter.com/secretlaith/status/1268251322467450880"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "Buffalo", "name": "Police tackle man giving interview", "date": "2020-06-01", "date_text": "June 1st", "id": "ny-buffalo-1"}, {"links": ["https://twitter.com/WBFO/status/1268712530358292484", "https://news.wbfo.org/post/graphic-video-buffalo-police-officers-violently-shove-man-ground", "https://www.facebook.com/watch/?ref=external&v=2489206818056597", "https://www.wivb.com/news/five-people-arrested-one-person-injured-during-protest-activity-in-niagara-square/", "https://www.reddit.com/r/PublicFreakout/comments/gwv7k4/just_about_an_hour_ago_police_officers_shove_man/fsxfeb3/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "Buffalo", "name": "Police shove elderly man, causing him to fall and hit the back of his head", "date": "2020-06-04", "date_text": "June 4th", "id": "ny-buffalo-2"}, {"links": ["https://twitter.com/bleeezyy_/status/1266894195865931778"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "Rochester", "name": "Police shoot at people filming", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-rochester-3"}, {"links": ["https://twitter.com/whitney_hu/status/1266540710188195843", "https://twitter.com/JasonLemon/status/1266529475757510656", "https://twitter.com/zayer_dounya/status/1266581597760831489"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police shove woman to the ground, inducing a seizure", "date": "2020-05-29", "date_text": "May 29th", "id": "ny-newyorkcity-12"}, {"links": ["https://twitter.com/DriveWendys/status/1266555286678048770"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police drive by man and hit him with car door", "date": "2020-05-29", "date_text": "May 29th", "id": "ny-newyorkcity-13"}, {"links": ["https://www.cityandstateny.com/articles/politics/news-politics/even-black-lawmakers-get-pepper-sprayed.html", "https://twitter.com/GwynneFitz/status/1266522692326428672"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Member of the New York State Assembly pepper-sprayed", "date": "2020-05-29", "date_text": "May 29th", "id": "ny-newyorkcity-17"}, {"links": ["https://twitter.com/Stoney_Holiday/status/1266616250685444096", "https://www.instagram.com/p/CAzSOtGlKQY/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police officer throws man against police car", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-5"}, {"links": ["https://twitter.com/j0ncampbell/status/1266514356071735296"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "NYPD beat people with batons", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-7"}, {"links": ["https://twitter.com/ZachReports/status/1266557305107202049", "https://twitter.com/BTSsavedmylife9/status/1266754310161006594"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Cop shoves a guy into a metal fence", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-8"}, {"links": ["https://twitter.com/crankberries/status/1266584559245803522", "https://twitter.com/greg_doucette/status/1266850004720812032"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Cop shoving a person to the ground towards metal trash bins", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-9"}, {"links": ["https://twitter.com/HuffPost/status/1266936484692725766", "https://www.huffpost.com/entry/huffpost-reporter-chris-mathias-arrested_n_5ed320d9c5b640cb8341c921"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Huffpost reporter is arrested by NYPD", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-16"}, {"links": ["https://twitter.com/_doreenpt/status/1266994439039455232"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police pull off protesters mask to pepper spray him", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-6"}, {"links": ["https://twitter.com/pgarapon/status/1266885414016688134", "https://twitter.com/mkultranews/status/1266893237450498048"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "NYPD rams protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-10"}, {"links": ["https://twitter.com/theactivistTati/status/1266889419858075649"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police assault protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-11"}, {"links": ["https://twitter.com/zellnor4ny/status/1266802303807500288"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "State senator pepper sprayed", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-14"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gu2u28/more_documented_aggression_in_flatbush_brooklyn/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Protesters with hands up assaulted by police", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-15"}, {"links": ["https://twitter.com/tylergabriel_/status/1267287516345925632"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police injure journalist", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-24"}, {"links": ["https://wapo.st/2Mx7WY6", "https://www.washingtonpost.com/national/protests-police-brutality-video/2020/06/05/a9e66568-a768-11ea-b473-04905b1af82b_story.html"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Officers beat man until his face and belongings are bloody", "date": "2020-05-31", "date_text": "May 31"}, {"links": ["https://mobile.twitter.com/jangelooff/status/1267308341660979200"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Officer threatens protestors with what appears to be a handgun", "date": "2020-06-01", "date_text": "June 1st", "id": "ny-newyorkcity-18"}, {"links": ["https://twitter.com/jhermann/status/1268043720399691776", "https://twitter.com/altochulo/status/1268018561571840000"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police officer body slams protestor", "date": "2020-06-02", "date_text": "June 2nd", "id": "ny-newyorkcity-4"}, {"links": ["https://www.lgbtqnation.com/2020/06/cops-beat-lgbtq-protestors-leaving-demonstration-stonewall-inn/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police beat protesters leaving Stonewall Inn solidarity protest", "date": "2020-06-02", "date_text": "June 2nd", "id": "ny-newyorkcity-19"}, {"links": ["https://www.reddit.com/r/newyorkcity/comments/gv8aft/police_beat_man_without_even_attempting_to_arrest/", "https://www.reddit.com/r/PublicFreakout/comments/gv43ar/police_beat_man_without_even_attempting_to_arrest/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Officers beat man with batons", "date": "2020-06-02", "date_text": "(Believed to be) June 2nd", "id": "ny-newyorkcity-20"}, {"links": ["https://twitter.com/joshfoxfilm/status/1268366550475603969", "https://www.dailymail.co.uk/news/article-8388515/NYPD-cop-beats-cyclist-nightstick-tries-away.html"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Man walking his bike beaten by officers with batons", "date": "2020-06-03", "date_text": "June 3rd", "id": "ny-newyorkcity-21"}, {"links": ["https://twitter.com/johnknefel/status/1268736946031001607"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "NYPD Officers hit and knock down a protestor and a journalist", "date": "2020-06-04", "date_text": "June 4th", "id": "ny-newyorkcity-22"}, {"links": ["https://twitter.com/sa0un/status/1268933117827571714"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Officers arrest cyclists; a man who questions police is clubbed in the neck", "date": "2020-06-04", "date_text": "June 4th", "id": "ny-newyorkcity-25"}, {"links": ["https://twitter.com/AndomForNY/status/1269065176814358529"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "NYPD pushes crowd into tight space and attacks several with batons", "date": "2020-06-05", "date_text": "June 5th", "id": "ny-newyorkcity-23"}, {"links": ["https://twitter.com/joeguillen/status/1266563974658744321"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Officer charges through other officers to attack a protestor who is backing away", "date": "2020-05-29", "date_text": "May 29th", "id": "mi-detroit-4"}, {"links": ["https://twitter.com/AkramG03/status/1266876680142049282"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Police shove and scream at men walking down the street", "date": "2020-05-30", "date_text": "May 30th", "id": "mi-detroit-1"}, {"links": ["https://twitter.com/DetroitReporter/status/1266957225114861568", "https://www.freep.com/story/news/local/michigan/detroit/2020/06/01/journalists-targeted-police-protests-detroit/5302659002/"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Police pepperspray reporter holding up media badge", "date": "2020-05-30", "date_text": "May 30th", "id": "mi-detroit-2"}, {"links": ["https://twitter.com/reporterdavidj/status/1266966021077962752"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Police shoot rubber bullets at reporters", "date": "2020-05-30", "date_text": "May 30th", "id": "mi-detroit-3"}, {"links": ["https://old.reddit.com/r/Bad_Cop_No_Donut/comments/gub8fx/police_shoot_protestor_point_blank_in_the_face/", "https://www.fox17online.com/news/local-news/grand-rapids/grpd-conducting-internal-investigation-after-viral-video-of-man-being-pepper-sprayed", "https://www.reddit.com/r/2020PoliceBrutality/comments/gv3xuu/police_in_grand_rapids_michigan_spray_a_man/"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Grand Rapids", "name": "Police spray unarmed man with pepperspray and shoot him in the face with a teargas canister", "date": "2020-05-31", "date_text": "May 31st", "id": "mi-grandrapids-5"}, {"links": ["https://twitter.com/i/status/1267677463850745858", "https://www.facebook.com/BlaineBurnett11/videos/963503949886/"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Kalamazoo", "name": "Police fire tear gas at prone protesters", "date": "2020-06-01", "date_text": "June 1st", "id": "mi-kalamazoo-6"}, {"links": ["https://streamable.com/xvlky1", "https://streamable.com/0wfiu3", "https://www.mlive.com/news/kalamazoo/2020/06/my-heart-was-wrenched-with-pain-assistant-chief-says-of-ordering-tear-gas-on-protesters.html", "https://ibb.co/Fgrwqkj"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Kalamazoo", "name": "Police fire tear gas at peaceful protesters", "date": "2020-06-02", "date_text": "June 2nd ~7:30pm EDT", "id": "mi-kalamazoo-7"}, {"links": ["https://twitter.com/perfectlyg0lden/status/1267014293628870656"], "state": "Unknown Location", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Unknown Location.md", "city": "", "name": "Compilation of incidents", "date": "2020-05-31", "date_text": "May 31st", "id": "tbd-tbd-1"}, {"links": ["https://twitter.com/samjwc/status/1267355060666654720"], "state": "Unknown Location", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Unknown Location.md", "city": "", "name": "Officer beats a protestor while pinning him on the ground", "date": "", "date_text": "", "id": "tbd-tbd-2"}, {"links": ["https://twitter.com/Desi_Stennett/status/1266996885824380929"], "state": "Tennessee", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Tennessee.md", "city": "Memphis", "name": "Police swarm a woman without provocation", "date": "2020-05-31", "date_text": "May 31st", "id": "tn-memphis-1"}, {"links": ["https://www.facebook.com/story.php?story_fbid=3011143412313088&id=100002523772680", "https://vtdigger.org/2020/06/03/police-arrest-4-at-st-johnsbury-george-floyd-protest/"], "state": "Vermont", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Vermont.md", "city": "St. Johnsbury", "name": "Police shove a protesting woman down a set of concrete steps.", "date": "2020-06-03", "date_text": "June 3rd", "id": "vt-stjohnsbury-1"}, {"links": ["https://mobile.twitter.com/chadloder/status/1267011092045115392"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Officer pins protestor by pushing his knee into his neck", "date": "2020-05-30", "date_text": "May 30th", "id": "wa-seattle-1"}, {"links": ["https://twitter.com/gunduzbaba1905/status/1266937500607614982"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police beat unarmed man on the ground", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-2"}, {"links": ["https://www.reddit.com/r/Bad_Cop_No_Donut/comments/gtt3w8/i_caught_the_moment_seattle_police_pepper_sprayed/"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police indiscriminately pepper spray peaceful protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-3"}, {"links": ["https://www.fox10phoenix.com/news/video-shows-milk-poured-over-face-of-child-pepper-sprayed-in-seattle-protest"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police pepper spray young child", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-4"}, {"links": ["https://www.reddit.com/r/Seattle/comments/gu3qq1/cop_just_casually_tosses_tear_gas_at_my_feet_like/", "https://www.google.ca/maps/@47.6117535,-122.3363867,3a,75y,340.76h,98.03t/data="], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police throw tear gas at peaceful protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-8"}, {"links": ["https://twitter.com/EDDIFUL/status/1267338642617364481", "https://www.reddit.com/r/PublicFreakout/comments/gv9g5n/the_police_were_spotted_instigating_violence/", "https://peertube.live/videos/watch/9e9323af-3ea1-4d3c-856d-a7f0a66688e7"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police officer pulls protestor to the ground unprovoked", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-6"}, {"links": ["https://twitter.com/The_Stepover/status/1267237940184231936"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Law enforcement officers throw flashbangs into peaceful crowd", "date": "2020-05-31", "date_text": "(Believed to be) May 31st", "id": "wa-seattle-7"}, {"links": ["https://www.reddit.com/r/Seattle/comments/gv0ru3/this_is_the_moment_it_all_happened/", "https://www.reddit.com/r/PublicFreakout/comments/gv1spo/the_moment_seattle_police_instigate_a_riot_over_a/"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police initiate violence", "date": "2020-06-01", "date_text": "June 1st", "id": "wa-seattle-9"}, {"links": ["https://twitter.com/Acyn/status/1267673936659021830?s=20"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police strike active newscrew with flashbang", "date": "2020-06-01", "date_text": "June 1st", "id": "wa-seattle-10"}, {"links": ["https://twitter.com/catsayshello/status/1268073344814866432"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Officers deploy flashbangs and pepper spray peaceful protesters", "date": "2020-06-02", "date_text": "June 2nd", "id": "wa-seattle-5"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gt69qe/police_start_shooting_press_with_some_kinda/", "https://twitter.com/greg_doucette/status/1266557059606163456", "https://twitter.com/KaitlinRustWAVE/status/1268218653104693248"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Police shoot rubber bullets at reporter", "date": "2020-05-30", "date_text": "May 30th", "id": "ky-louisville-2"}, {"links": ["https://twitter.com/shannynsharyse/status/1267015577266249728", "https://twitter.com/shannynsharyse/status/1266631722239766528"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Young woman shot in the head by a rubber bullet", "date": "2020-05-30", "date_text": "May 30th", "id": "ky-louisville-4"}, {"links": ["https://twitter.com/nataliealund/status/1266877181164089349", "https://twitter.com/WFPLNews/status/1266923468102262784"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Police smashing water bottles", "date": "2020-05-31", "date_text": "May 31st", "id": "ky-louisville-1"}, {"links": ["https://twitter.com/Itz5500Gillz/status/1267454024288292867"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Police shoot at cars in traffic from overpass", "date": "2020-05-31", "date_text": "May 31st", "id": "ky-louisville-5"}, {"links": ["https://reddit.com/r/PublicFreakout/comments/gutezm/multiple_kentucky_state_police_troopers_tackled/"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Louisville police swarm and beat a man screaming on the ground", "date": "2020-06-01", "date_text": "Believed to be June 1st", "id": "ky-louisville-3"}, {"links": ["https://edition.cnn.com/2020/06/02/us/david-mcatee-louisville-what-we-know-trnd/index.html", "https://edition.cnn.com/2020/06/01/us/louisville-protests-man-shot-dead/index.html", "https://youtu.be/wDg9fev67lw", "https://mobile.twitter.com/chadloder/status/1267555717751296000", "https://www.nytimes.com/video/us/100000007175316/the-david-mcatee-shooting-did-aggressive-policing-lead-to-a-fatal-outcome.html"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Restaurant owner shot and killed", "date": "2020-06-01", "date_text": "June 1st", "id": "ky-louisville-6"}, {"links": ["https://www.reddit.com/r/Louisville/comments/gw5joa/peaceful_protesters_marching_in_st_mathews_get/"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Protestors in St. Matthews shot with pepper rounds", "date": "2020-06-03", "date_text": "June 3rd", "id": "ky-louisville-7"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guxm5o/police_arresting_a_peaceful_protestor_for_simply/?utm_source=share&utm_medium=ios_app&utm_name=iossmf", "https://www.reddit.com/r/iamatotalpieceofshit/comments/gugrfa/man_reaches_out_with_love_to_the_cops_and_they/", "https://www.postandcourier.com/news/he-told-charleston-police-i-am-not-your-enemy-then-he-was-handcuffed/article_e7de4b0a-a43f-11ea-a019-1f9e6a20ea55.html"], "state": "South Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/South Carolina.md", "city": "Charleston", "name": "Police Individually Target Peaceful Protestor and Arrest Him", "date": "2020-05-31", "date_text": "May 31st", "id": "sc-charleston-1"}, {"links": ["https://twitter.com/track4life_bry/status/1268313958479532034"], "state": "South Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/South Carolina.md", "city": "Location Unknown", "name": "Police Assault Suspect on Ground During Arrest", "date": "2020-06-03", "date_text": "June 3rd"}, {"links": ["https://www.cnn.com/2020/06/05/us/atlanta-police-body-slam-woman/index.html"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Atlanta", "name": "Officer body slams woman onto ground", "date": "2020-05-29", "date_text": "May 29th", "id": "ga-atlanta-1"}, {"links": ["https://twitter.com/ava/status/1266797973834395648?s=20"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Atlanta", "name": "Officer shoves a woman with his bike", "date": "2020-05-30", "date_text": "May 30th", "id": "ga-atlanta-2"}, {"links": ["https://twitter.com/danielvankirk/status/1266947767840063489", "https://www.instagram.com/p/CA27quMhqJA/", "https://twitter.com/SarahBaska/status/1267308455225774080?s=20", "https://www.standard.co.uk/news/world/atlanta-police-officers-fired-dragging-students-car-protest-a4457371.html#gsc.tab=0"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Atlanta", "name": "Cops pull people out of their car, taze them", "date": "2020-05-30", "date_text": "May 30th", "id": "ga-atlanta-3"}, {"links": ["https://twitter.com/ftn_shark/status/1266854056506667009?s=19", "https://twitter.com/throneofmorac/status/1266870493858185217?s=09"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Lawrenceville", "name": "Man tased in back for speaking up after man on ground is punched in face by cop", "date": "2020-05-30", "date_text": "May 30th", "id": "ga-lawrenceville-4"}, {"links": ["https://twitter.com/thickliljawn/status/1267239498083110913"], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Fort Lauderdale", "name": "Police Shove a woman down to her knees", "date": "2020-05-31", "date_text": "May 31st", "id": "fl-fortlauderdale-1"}, {"links": ["https://www.miamiherald.com/news/local/community/broward/article243193481.html"], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Fort Lauderdale", "name": "Law enforcement shoot a woman in the head", "date": "2020-05-31", "date_text": "May 31st", "id": "fl-fortlauderdale-2"}, {"links": ["https://twitter.com/BillyCorben/status/1267644127178563588"], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Miami", "name": "Man tackled to ground after speaking to police", "date": "2020-05-31", "date_text": "May 31st", "id": "fl-miami-3"}, {"links": ["https://twitter.com/ewcfilms/status/1268003421786906627"], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Orlando", "name": "Police use excessive force during an arrest", "date": "2020-06-02", "date_text": "June 2nd", "id": "fl-orlando-4"}, {"links": ["https://twitter.com/greg_doucette/status/1269017349727928320", "https://www.google.com/maps/place/29+W+South+St,+Orlando,+FL+32801,+USA/@28.5384293,-81.3797504,20z/data="], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Orlando", "name": "Police fire on protesters outside city hall", "date": "", "date_text": "Date unknown", "id": "fl-orlando-5"}, {"links": ["https://twitter.com/walkin_da_talk/status/1268718193679499266", "https://twitter.com/jamiebullockk/status/1268658254806163460", "https://twitter.com/InesseC/status/1268912900565094401", "https://www.google.com/maps/@27.9563654,-82.4569108,3a,75y,255.48h,92.17t/data="], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Tampa", "name": "One woman is pinned to the ground and another is pepper-sprayed", "date": "2020-06-04", "date_text": "June 4th", "id": "fl-tampa-6"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gwm2mf/police_using_selective_enforcement_on_protestors/", "https://twitter.com/Eggsalaaad/status/1268223118394392576"], "state": "North Dakota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/North Dakota.md", "city": "Fargo", "name": "Police using selective enforcement on black individuals", "date": "2020-06-03", "date_text": "June 3rd", "id": "nd-fargo-1"}, {"links": ["https://twitter.com/NeonMarionette/status/1266962885957292032?s=20"], "state": "Wisconsin", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Wisconsin.md", "city": "Madison", "name": "Officer pepper-sprays protestor walking backwards with arms raised", "date": "2020-05-31", "date_text": "May 31st", "id": "wi-madison-1"}, {"links": ["http://www.milwaukeeindependent.com/articles/milwaukee-common-council-calls-investigation-use-knee-police-restrain-protestor/", "https://old.reddit.com/r/gifs/comments/gxptyo/june_2_2020_milwaukee_police_punch_and_knee/", "https://www.google.ca/maps/place/N+6th+St+%26+W+Vliet+St,+Milwaukee,+WI+53205,+USA/@43.0483922,-87.9188126,3a,75y,1.17h,90t/data="], "state": "Wisconsin", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Wisconsin.md", "city": "Milwaukee", "name": "Police restrain man using knee on neck", "date": "2020-06-02", "date_text": "June 2nd"}, {"links": ["https://www.facebook.com/1462345700/posts/10220863688809651"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot flashbang grenades into crowd", "date": "2020-05-26", "date_text": "believed to be May 26th or 27th", "id": "mn-minneapolis-14"}, {"links": ["https://twitter.com/MichaelAdams317/status/1266945268567678976", "https://twitter.com/rsdaza/status/1267200011659554824", "https://twitter.com/MichaelAdams317/status/1267203751913422849", "https://www.vice.com/en_us/article/y3zd7g/i-told-riot-cops-im-a-journalist-they-forced-me-to-the-ground-and-pepper-sprayed-me-in-the-face"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police storm gas station, attacking reporters who show press badges", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-1"}, {"links": ["https://www.youtube.com/watch?v=O3qj4cfsd7g", "https://twitter.com/stribrooks/status/1266186985041022976"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police drive by spraying", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-3"}, {"links": ["https://www.youtube.com/watch?v=aNuzzVpDZTY"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "CNN Reporter arrested", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-4"}, {"links": ["https://www.youtube.com/watch?v=wmpic2NU1RM&feature=youtu.be"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "WCCO photojournalist arrested", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-5"}, {"links": ["https://mobile.twitter.com/chadloder/status/1266962631887224837"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "CNN crew shot at with rubber bullets and tear gas while live on air", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-15"}, {"links": ["https://twitter.com/greg_doucette/status/1267118696960528386"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot rubber bullets and teargas at an MSNBC reporter", "date": "2020-05-30", "date_text": "believed to be May 30th", "id": "mn-minneapolis-16"}, {"links": ["https://www.srf.ch/play/tv/news-clip/video/schweizer-journalisten-werden-mit-gummischrot-attackiert?id=67d44dd8-f16e-4db0-b690-799ab827956a&startTime=9", "https://www.srf.ch/news/international/pressefreiheit-unter-beschuss-schweizer-journalisten-in-den-usa-von-polizei-attackiert", "https://www.swissinfo.ch/eng/minneapolis-protests-_rubber-bullets-shot-at-swiss-journalists-by-us-police-/45808806"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Swiss journalists shot at with rubber bullets by police", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-17"}, {"links": ["https://twitter.com/tkerssen/status/1266921821653385225"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot at a woman on her porch", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-2"}, {"links": ["https://mobile.twitter.com/mollyhf/status/1266911382613692422", "https://www.latimes.com/world-nation/story/2020-05-30/la-reporter-tear-gas-police"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "LA-Times employee recounts getting shot", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-6"}, {"links": ["https://twitter.com/JaredGoyette/status/1266961243476299778"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Reporter shares his experience", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-7"}, {"links": ["https://twitter.com/val_ebertz/status/1266975058230235137", "https://twitter.com/andrewkimmel/status/1266987126467461120?s=20", "https://twitter.com/andrewkimmel/status/1267012840197586946?s=20"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police slashes tires", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-8"}, {"links": ["https://mobile.twitter.com/chadloder/status/1266971884001693696", "https://twitter.com/MikeGeorgeCBS/status/1266916104951214080"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "CBS news crew shot with rubber bullets", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-9"}, {"links": ["https://twitter.com/atrupar/status/1266910910137995264"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police throw flashbangs at reporter", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-10"}, {"links": ["https://mobile.twitter.com/KillerMartinis/status/1266618525600399361?s=19"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police blind a reporter with rubber bullet", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-11"}, {"links": ["https://www.reuters.com/article/us-minneapolis-police-protest-update/reuters-cameraman-hit-by-rubber-bullets-as-police-disperse-protesters-idUSKBN237050"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot Reuters reporters with rubber bullets", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-12"}, {"links": ["https://www.youtube.com/watch?v=NN8ISwuiX68"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot at, threaten to arrest reporter", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-13"}, {"links": ["https://twitter.com/greg_doucette/status/1267283198163255297"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police stop SUV to driveby pepperspray protesters through window", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-18"}, {"links": ["https://mobile.twitter.com/chadloder/status/1266957030285127687"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Patient care assistant reports being shot with rubber bullets while treating injured protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-19"}, {"links": ["https://twitter.com/edouphoto/status/1267958349477249024", "https://www.facebook.com/356074941105769/posts/3020200918026478/"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Journalists pepper sprayed and hit with flashbangs and batons", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-20"}, {"links": ["https://www.instagram.com/tv/CA9UOKAj7MC/"], "state": "North Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/North Carolina.md", "city": "Charlotte", "name": "Law enforcement close on protesters from both sides with pepper bullets, tear gas, and flashbangs", "date": "2020-06-02", "date_text": "June 2nd", "id": "nc-charlotte-1"}, {"links": ["https://twitter.com/AngelaMWilhelm/status/1268056986102444033", "https://twitter.com/AngelaMWilhelm/status/1267974081577717762", "https://twitter.com/daveth89/status/1267974555332685824", "https://i.redd.it/wofh339sqr251.png"], "state": "North Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/North Carolina.md", "city": "Asheville", "name": "Police surround approved medical station and destroy supplies", "date": "2020-06-02", "date_text": "June 2nd", "id": "nc-asheville-2"}, {"links": ["https://www.instagram.com/p/CA51AJxH7S9"], "state": "North Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/North Carolina.md", "city": "Raleigh", "name": "Police shoot to intimidate a business owner on his property", "date": "2020-06-02", "date_text": "June 2nd", "id": "nc-raleigh-3"}, {"links": ["https://twitter.com/greg_doucette/status/1266745200656990208"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Fort Wayne", "name": "Police pepper spray protesters attempting to record them", "date": "2020-05-29", "date_text": "May 29th", "id": "in-fortwayne-1"}, {"links": ["https://twitter.com/blazedyukhei/status/1266533569029177346"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Fort Wayne", "name": "Police tear gas peaceful protesters", "date": "2020-05-30", "date_text": "May 30th", "id": "in-fortwayne-2"}, {"links": ["https://wpta21.com/2020/05/31/toddler-tear-gassed-photo-goes-viral/#.XtUVqwf8OnF.facebook"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Fort Wayne", "name": "Toddler teargassed by police", "date": "2020-05-30", "date_text": "May 30th", "id": "in-fortwayne-3"}, {"links": ["https://i.redd.it/4qzvp2gd54251.jpg", "https://twitter.com/notbalin/status/1266972999296704513", "https://mobile.twitter.com/chadloder/status/1267279165230743553/photo/2"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Fort Wayne", "name": "Protester hit in the face with a gas cannister", "date": "2020-05-31", "date_text": "May 31st", "id": "in-fortwayne-4"}, {"links": ["https://www.facebook.com/AlexandraIndy/videos/10219444419838711"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Indianapolis", "name": "Police confiscate medical supplies from medical station", "date": "2020-05-29", "date_text": "May 29th", "id": "in-indianapolis-5"}, {"links": ["https://www.washingtonpost.com/national/protests-police-brutality-video/2020/06/05/a9e66568-a768-11ea-b473-04905b1af82b_story.html", "https://www.reddit.com/r/PublicFreakout/comments/guffju/indianapolis_police_on_women_rights/", "https://twitter.com/greg_doucette/status/1268391718086422528"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Indianapolis", "name": "Police beat woman with batons and shoot pepper balls, shove another to the ground", "date": "2020-06-01", "date_text": "June 1st", "id": "in-indianapolis-6"}, {"links": ["https://www.facebook.com/ctchoula/videos/10163707272210302/", "https://scontent-ort2-2.xx.fbcdn.net/v/t1.0-9/101254362_755196441884833_7192544661301362688_n.jpg?_nc_cat=103&_nc_sid=110474&_nc_ohc=wjDZM1x0RLYAX9sKPft&_nc_ht=scontent-ort2-2.xx&oh=606a9dbf10d30a680c5dcb2c8ae8d7ce&oe=5EFD314B"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Lafayette", "name": "Officer drops tear gas into peaceful protest without warning", "date": "2020-05-31", "date_text": "Possibly May 31st", "id": "in-lafayette-7"}, {"links": ["https://www.reddit.com/r/Eugene/comments/gurr9r/police_shoot_projectile_from_moving_vehicle_hit/", "https://streamable.com/9h2tk3"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Eugene", "name": "Officer shoots projectile from moving vehicle", "date": "2020-06-01", "date_text": "June 1st", "id": "or-eugene-1"}, {"links": ["https://twitter.com/IwriteOK/status/1266907719635632129", "https://twitter.com/MrOlmos/status/1266916861267996673"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Police violently break up peaceful protest", "date": "2020-05-30", "date_text": "May 30th", "id": "or-portland-2"}, {"links": ["https://www.youtube.com/watch?v=01oWE24O9Zw&feature=emb_title"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Officer pepper-sprays protestor", "date": "2020-05-30", "date_text": "May 30th", "id": "or-portland-3"}, {"links": ["https://twitter.com/AstuteAF/status/1268125169890938882"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Police appear to tear-gas a homeless camp", "date": "2020-06-02", "date_text": "June 2nd", "id": "or-portland-4"}, {"links": ["https://twitter.com/matcha_chai/status/1268043556913987584"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Police deploy shoot teargas/flashbang grenade into a crowd", "date": "2020-06-02", "date_text": "June 2nd", "id": "or-portland-5"}, {"links": ["https://twitter.com/MrAndyNgo/status/1268224547272003585"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Police launch teargas into a crowd", "date": "2020-06-02", "date_text": "June 2nd", "id": "or-portland-6"}, {"links": ["https://twitter.com/chadloder/status/1269526243138928642"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Officer attacks photographer with baton and pepper sprays him", "date": "2020-06-06", "date_text": "June 6th", "id": "or-portland-7"}, {"links": ["https://twitter.com/RimeAndTreason/status/1267268090351489024"], "state": "Massachusetts", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", "city": "Boston", "name": "Police beat an innocent man crossing the street with batons.", "date": "2020-05-31", "date_text": "May 31st", "id": "ma-boston-1"}, {"links": ["https://twitter.com/kodyfishertv/status/1266901735198638082"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Cincinnati", "name": "Police disperse peaceful protest with tear gas, flash bangs and pepper bullets", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-cincinnati-1"}, {"links": ["https://touch.facebook.com/story.php?story_fbid=10157718199384132&id=697759131&ref=bookmarks"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Cincinnati", "name": "First hand account of police violently dispersing crowds", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-cincinnati-2"}, {"links": ["https://twitter.com/greg_doucette/status/1267114065819770880"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Cleveland", "name": "Officer swings baton at protesters, beats one who is trying to keep crowd back", "date": "2020-05-30", "date_text": "believed to be May 30th", "id": "oh-cleveland-1"}, {"links": ["https://www.facebook.com/story.php?story_fbid=1137997739900780&id=100010716946743"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Cop hits a protestor in the face, escalates to whole crowd being pepper sprayed", "date": "2020-05-29", "date_text": "May 29th", "id": "oh-columbus-3"}, {"links": ["https://www.cnn.com/2020/05/30/politics/joyce-beatty-ohio-pepper-sprayed-columbus-protest/index.html", "https://twitter.com/politico/status/1266866982919516160", "https://twitter.com/TimWCBD/status/1266787064735043591", "https://twitter.com/KRobPhoto/status/1266796191469252610"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Congresswoman Joyce Beatty reportedly sprayed with \"mace or pepper spray\"", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-columbus-4"}, {"links": ["https://twitter.com/rottenstrwbry/status/1266805467990446081"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Peaceful protester sprayed in the face with mace", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-columbus-5"}, {"links": ["https://twitter.com/greg_doucette/status/1266878189537824772"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepperspray protesters for chanting", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-columbus-6"}, {"links": ["https://twitter.com/Katy38105157/status/1266816739444166656", "https://twitter.com/SAColumbus/status/1266867613872857094"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepper-spray a medic", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-7"}, {"links": ["https://twitter.com/lalaitskelcey2/status/1266821476122058752", "https://twitter.com/MarioLeUgly/status/1266933807929798656"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police mace an innocent woman", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-8"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gtq7i4/columbus_police_officer_trying_to_use_his_car_to/"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police intimidating campus protesters by driving car towards them", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-9"}, {"links": ["https://twitter.com/DabinDhillo/status/1266892095702392832", "https://twitter.com/taesvangogh/status/1266907922308558848"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepper spray two kneeling protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-10"}, {"links": ["https://i.redd.it/4ix8f3j6dy151.jpg", "https://old.reddit.com/r/Columbus/comments/gtk192/photographer_being_pepper_sprayed_by_police/", "https://www.instagram.com/p/CA03DsTByLn/"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepper spray African-American photographer", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-11"}, {"links": ["https://twitter.com/greg_doucette/status/1267102580070592512"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepperspray sitting protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-12"}, {"links": ["https://mobile.twitter.com/chadloder/status/1267113315613806592", "https://twitter.com/greg_doucette/status/1267122343454953472"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Woman holding a sign is shot with rubber bullets", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-13"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gusqeg/video_from_inside_the_concrete_courtyard_peaceful/?utm_source=share&utm_medium=ios_app&utm_name=iossmf", "https://i.imgur.com/mECPaWe.jpg"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Protestors kept in a courtyard with no bathroom breaks, water, or food, for nine hours", "date": "2020-05-31", "date_text": "May 31st-June 1st", "id": "oh-columbus-14"}, {"links": ["https://www.thelantern.com/2020/06/columbus-mayor-police-chief-address-protest-policing-pepper-spray-of-lantern-journalists/", "https://twitter.com/TheLantern/status/1267644471317090305", "https://twitter.com/maevewalsh27/status/1267646128289447939"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police push and pepper spray reporters from The Lantern newspaper", "date": "2020-06-01", "date_text": "June 1st", "id": "oh-columbus-15"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gvte8e/cop_refuses_to_give_diabetic_woman_her_insulin/", "https://www.tiktok.com/@zestaz/video/6833912697436867845", "https://www.tiktok.com/@zestaz/video/6833913925231185158"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Officer refuses to give diabetic arrestee her insulin back", "date": "2020-06-02", "date_text": "June 2nd", "id": "oh-columbus-16"}, {"links": ["https://www.reddit.com/r/Bad_Cop_No_Donut/comments/gwd37n/a_black_20yearold_student_justin_howell_is_in/", "https://www.texastribune.org/2020/06/01/austin-police-george-floyd-mike-ramos/", "https://www.kvue.com/article/news/local/austin-protester-police-struck-by-less-lethal-bean-bag-round/269-430f90a2-b6c1-4ee3-9d9c-639faf132100"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police critically injure 20 year old black protester during protests against police violence", "date": "2020-05-30", "date_text": "May 30th", "id": "tx-austin-1"}, {"links": ["https://gfycat.com/tautimaginativedore"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police assault protesters", "date": "2020-05-30", "date_text": "(believed to be) May 30th", "id": "tx-austin-2"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guwc4y/austin_tx_nonviolent_protestor_shot_in_the_head/", "https://www.instagram.com/p/CA6TCIGnuWm/", "https://www.youtube.com/watch?v=-BGyTi-KdKc", "https://streamable.com/o1uqgy", "https://cbsaustin.com/news/local/austin-teen-hospitalized-with-head-injury-after-police-shoot-him-with-bean-bags-at-protest"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police shoot non-violent protestor in the head", "date": "2020-05-30", "date_text": "May 30th", "id": "tx-austin-3"}, {"links": ["https://twitter.com/highsettler/status/1266876480929349633", "https://imgur.com/gallery/VKuIIvu", "https://gfycat.com/weirdthankfulgnatcatcher"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police use tear gas & rubber bullets on protesters", "date": "2020-05-30", "date_text": "May 30th @ ~3pm", "id": "tx-austin-4"}, {"links": ["https://twitter.com/ironfront7/status/1267133400156196870"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police open fire on crowd with rubber bullets", "date": "2020-05-30", "date_text": "May 30th", "id": "tx-austin-5"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gwfu8e/apd_gets_water_splashed_on_them_and_immediately/", "https://tuckbot.tv/#/watch/gwfu8e", "https://peertube.live/videos/watch/320ea302-9806-44c0-843e-49d8486c423f"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police open fire on crowd after a protester throws water on them", "date": "2020-05-31", "date_text": "May 31st", "id": "tx-austin-6"}, {"links": ["https://old.reddit.com/r/Bad_Cop_No_Donut/comments/guhgfq/please_let_others_see_this_this_guy_did_not/", "https://twitter.com/Grits4Breakfast/status/1267128210455588865"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police spray a man in the face while he stands still ~3 feet away from them.", "date": "2020-05-31", "date_text": "May 31st", "id": "tx-austin-7"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gvjjwg/volunteer_medics_advised_by_police_to_bring_a/", "https://www.reddit.com/r/PublicFreakout/comments/gwbbjs/protestor_is_shot_in_head_with_rubber_bullet/", "http://www.thebatt.com/opinion/opinion-his-name-is-justin-howell/article_93a79c44-a5b6-11ea-aa54-ebc0da33cc35.html?fbclid=IwAR11FqXr9dRCKo-ohfeBoO9FdYFRG2uon0nqAkxKO5gZuL_-4EzgukAGcBs"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police fire upon protesters seeking medical help", "date": "2020-06-02", "date_text": "June 2nd", "id": "tx-austin-8"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gw2dpw/cop_in_baytown_tx_pulls_over_black_man_white_man/", "https://www.facebook.com/isaiah.benavides.94/videos/2811815772219886/"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Baytown", "name": "Police officer tackles and knees man on the ground", "date": "2020-06-02", "date_text": "June 2nd", "id": "tx-baytown-9"}, {"links": ["https://twitter.com/vikthewild/status/1266538354939756544", "https://abc13.com/hpd-uns-over-girl-police-on-horse-tramples-protester-george-floyd/6223240/"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Houston", "name": "Police trample protester with horse", "date": "2020-05-29", "date_text": "May 29th", "id": "tx-houston-10"}, {"links": ["https://twitter.com/AbkTrauma/status/1266511972524269569"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Houston", "name": "Officers shove a woman to the pavement", "date": "2020-05-29", "date_text": "May 29th", "id": "tx-houston-11"}, {"links": ["https://twitter.com/KevinRKrause/status/1266898396339675137", "https://i.redd.it/ns0uj557x0251.jpg", "https://twitter.com/greg_doucette/status/1267109272342736896"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Dallas", "name": "Police shoot unarmed woman in the face with a rubber bullet", "date": "2020-05-30", "date_text": "May 30th", "id": "tx-dallas-12"}, {"links": ["https://twitter.com/xtranai/status/1266898175568338945"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Dallas", "name": "Police use flashbangs and tear gas on protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "tx-dallas-13"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gx9a5n/these_protests_took_place_on_june_2nd_in_dallas/", "https://www.google.com/maps/place/Margaret+Hunt+Hill+Bridge,+Dallas,+TX,+USA/@32.781075,-96.8186896,15z/data="], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Dallas", "name": "Police maneuver protestors onto bridge and fire tear gas and rubber bullets", "date": "2020-06-02", "date_text": "June 2nd", "id": "tx-dallas-14"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gu3s6j/police_shoots_protestor_for_no_reason/", "https://tuckbot.tv/#/watch/gu3s6j"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "San Antonio", "name": "Police shoot man filming them with what were allegedly rubber bullets", "date": "2020-05-31", "date_text": "(believed to be) May 31st", "id": "tx-sanantonio-15"}, {"links": ["https://twitter.com/XruthxNthr/status/1266903223220097024"], "state": "Nebraska", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nebraska.md", "city": "Omaha", "name": "Police Mace, shoot pepper bullets at protesters sitting on the ground", "date": "2020-05-31", "date_text": "May 31st", "id": "ne-omaha-1"}, {"links": ["https://twitter.com/reecereports/status/1267629669093978117"], "state": "Nebraska", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nebraska.md", "city": "Omaha", "name": "Peaceful protestors arrested for breaking curfew", "date": "2020-06-01", "date_text": "June 1", "id": "ne-omaha-2"}, {"links": ["https://twitter.com/AleemMaqbool/status/1267319521486004225?s=20", "https://www.bbc.co.uk/news/av/world-us-canada-52884888/george-floyd-protests-police-charge-at-bbc-cameraman-near-white-house"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Riot Police rams shield into BBC cameraman", "date": "2020-05-31", "date_text": "May 31", "id": "dc-dc-1"}, {"links": ["https://7news.com.au/sunrise/on-the-show/scary-moment-as-sunrise-reporter-caught-up-in-us-violence-c-1073136", "https://www.abc.net.au/news/2020-06-02/channel-7-journalists-assaulted-police-george-floyd-protesters/12312056", "https://twitter.com/ASB_Breaking/status/1267596043870486528", "https://twitter.com/i/status/1267597024096137217", "https://twitter.com/i/status/1267606685767667712", "https://v.redd.it/qf9vf0hdrd251", "https://peertube.live/videos/watch/1713b881-a750-45a0-9c6c-f066ebcac484", "https://www.reddit.com/r/2020PoliceBrutality/comments/gvqjjv/nsfl_clearer_footage_of_guy_hit_by_shield_blood/"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Australian news crew and protestors attacked by police", "date": "2020-06-01", "date_text": "June 1st", "id": "dc-dc-2"}, {"links": ["https://www.nytimes.com/2020/06/02/us/politics/trump-walk-lafayette-square.html", "https://www.cnn.com/2020/06/02/politics/trump-white-house-protest-police-church-photo-op/index.html", "https://www.wusa9.com/article/news/local/dc/lafayette-square-washington-dc-protests-st-johns-church/65-f76d9753-8d99-42df-b02d-99d11a427595", "https://www.reddit.com/r/2020PoliceBrutality/comments/gvpqoz/nsfl_hit_by_riot_shield_blood_gushes_out_of_guys/", "https://www.reddit.com/r/2020PoliceBrutality/comments/gvpgpz/found_both_videos_of_the_dc_event_i_know_people/"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Protestors are quickly and violently pushed out of Lafayette Square", "date": "2020-06-01", "date_text": "June 1", "id": "dc-dc-3"}, {"links": ["https://mobile.twitter.com/chadloder/status/1267377374066167808"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Officer fires tear gas cannister at protestor's head", "date": "", "date_text": "", "id": "dc-dc-4"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guvwgo/trump_gives_a_speech_about_protecting_peaceful/?utm_source=share&utm_medium=ios_app&utm_name=iossmf"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Police violence outside the White House", "date": "2020-06-01", "date_text": "June 1st", "id": "dc-dc-5"}, {"links": ["https://twitter.com/suckmyunicornD/status/1267767217392934917", "https://dcist.com/story/20/06/02/dupont-dc-home-protest-rahul-dubey/"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Man who sheltered protestors discusses law enforcement officers shooting tear gas into his house", "date": "2020-06-01", "date_text": "June 1st"}, {"links": ["https://twitter.com/WestofHereFox/status/1267615709791731713"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC"}, {"links": ["https://twitter.com/ETfonehome97/status/1267657232411435008"], "state": "Alabama", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", "city": "Huntsville", "name": "Protester falls and is stepped on", "date": "2020-06-01", "date_text": "June 1st", "id": "al-huntsville-1"}, {"links": ["https://twitter.com/bitchthot420/status/1268350308398268416"], "state": "Alabama", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", "city": "Huntsville", "name": "Police officer pepper sprays protestors for no reason", "date": "2020-06-03", "date_text": "June 3rd", "id": "al-huntsville-2"}, {"links": ["https://twitter.com/greg_doucette/status/1268397070563414016"], "state": "Alabama", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", "city": "Huntsville", "name": "Police tear gas reporters", "date": "2020-06-03", "date_text": "June 3rd", "id": "al-huntsville-3"}, {"links": ["https://www.alreporter.com/2020/06/03/huntsville-police-deploy-tear-gas-rubber-bullets-on-protesters/"], "state": "Alabama", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", "city": "Huntsville", "name": "Police preemptively tear gas peaceful protestors", "date": "2020-06-03", "date_text": "June 3rd", "id": "al-huntsville-4"}, {"links": ["https://twitter.com/LUVRGRLLANI/status/1266866301001179136"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Protester shot in head with rubber bullet", "date": "2020-05-30", "date_text": "May 30th", "id": "il-chicago-2"}, {"links": ["https://twitter.com/johncusack/status/1266938983575101441"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police harass and assault John Cusack", "date": "2020-05-31", "date_text": "May 31st", "id": "il-chicago-3"}, {"links": ["https://twitter.com/cruzzzyc/status/1267185423333199874", "https://blockclubchicago.org/2020/06/03/black-women-pulled-from-car-kneeled-on-by-chicago-police-officers-outside-northwest-side-mall-i-was-scared-for-my-life/", "https://chicago.cbslocal.com/2020/06/03/police-drag-women-out-of-car-outside-brickyard-mall-woman-says-officer-put-knee-on-neck/"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police pull black women out of the car and throw them to the ground", "date": "2020-05-31", "date_text": "May 31st", "id": "il-chicago-4"}, {"links": ["https://twitter.com/JCB_Journo/status/1266897672545480706"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police pepperspray reporter for recording", "date": "2020-05-31", "date_text": "May 31st", "id": "il-chicago-5"}, {"links": ["https://news.wttw.com/2020/06/05/police-board-president-officers-struck-me-5-times-their-batons-during-protest"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Cops hit Chicago Police Board President", "date": "2020-05-31", "date_text": "May 31st", "id": "il-chicago-6"}, {"links": ["https://www.youtube.com/watch?time_continue=44&v=_urY-W8otNA", "https://chicago.suntimes.com/crime/2020/6/3/21279501/police-video-cpd-officer-punch-protester-uptown-investigation-copa"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Video showing CPD officer punching protester in Uptown under investigation", "date": "2020-06-01", "date_text": "June 1st", "id": "il-chicago-7"}, {"links": ["https://twitter.com/BLMChi/status/1267486699321544704"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "CPD chase down protester on TV", "date": "2020-06-01", "date_text": "June 1st", "id": "il-chicago-8"}, {"links": ["https://www.facebook.com/Shawn.R.Russ/videos/10221345617964005/", "https://www.kktv.com/content/news/Colorado-Springs-police-issue-statement-following-use-of-force-arrest-during-protest-570969681.html"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Colorado Springs", "name": "Multiple cops pin man to ground while repeatedly punching him", "date": "2020-06-01", "date_text": "June 1st", "id": "co-coloradosprings-1"}, {"links": ["https://www.denverpost.com/2020/05/29/denver-post-photographer-pepper-balls-george-floyd-protest/"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Reporter shot with multiple pepper balls", "date": "2020-05-28", "date_text": "May 28th", "id": "co-denver-2"}, {"links": ["https://twitter.com/greg_doucette/status/1266758227930333188", "https://twitter.com/Dizzle14Double/status/1266615473816260609", "https://twitter.com/SaltMagazine_/status/1266634027257098240"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police pepperspray people trying to record", "date": "2020-05-29", "date_text": "May 29th", "id": "co-denver-3"}, {"links": ["https://twitter.com/AdiGTV/status/1266554320717099008"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Denver law enforcement shoot at reporters", "date": "2020-05-29", "date_text": "May 29th", "id": "co-denver-4"}, {"links": ["https://twitter.com/DoughertyKMGH/status/1266560264918491138/video/1"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Denver SWAT shoot at woman trying to stop armored car", "date": "2020-05-29", "date_text": "May 29th", "id": "co-denver-5"}, {"links": ["https://twitter.com/tessrmalle/status/1266945413258653696", "https://www.reddit.com/r/2020PoliceBrutality/comments/gunfut/denver_officer_pushed_a_photographer_into_a_fire/", "https://www.youtube.com/watch?v=zhIWohJsRyM&feature=youtu.be&t=4225"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police throw reporter into fire", "date": "2020-05-30", "date_text": "May 30th", "id": "co-denver-6"}, {"links": ["https://twitter.com/moneyroe99/status/1266956171409346566"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police tear gas and shoot protestors", "date": "2020-05-30", "date_text": "May 30th", "id": "co-denver-7"}, {"links": ["https://youtu.be/xNLZ7exVxq4?t=110"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Denver law enforcement shoot at reporter standing on the sidewalk", "date": "2020-05-30", "date_text": "May 30th", "id": "co-denver-8"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gumff6/denver_police_fire_pepper_balls_at_a_car_with_a/"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police fire pepper balls at car with pregnant woman", "date": "2020-05-31", "date_text": "May 31st", "id": "co-denver-9"}, {"links": ["https://twitter.com/heyydnae/status/1267139396278661121?s=21"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police officer fires at protestor while driving away", "date": "2020-05-31", "date_text": "May 31st", "id": "co-denver-10"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gvhisl/police_rip_sign_out_of_peaceful_protesters_hands/", "https://www.tiktok.com/@yazzdazzz/video/6832896487207243014"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police pepper sprays peaceful protestor and fires tear gas on crowd", "date": "2020-05-31", "date_text": "Believed to be May 31st or June 1st", "id": "co-denver-11"}, {"links": ["https://www.reddit.com/r/Denver/comments/gvhqs2/elisabeth_epps_use_of_force_committee_member_for/"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police shoot protester from behind with tear gas canister", "date": "2020-06-02", "date_text": "June 2nd", "id": "co-denver-12"}, {"links": ["https://www.reddit.com/r/Denver/comments/gwdg85/denver_swat_unit_tackles_group_of_peaceful/"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police tackle group of peaceful protesters", "date": "2020-06-04", "date_text": "June 4th", "id": "co-denver-13"}, {"links": ["https://twitter.com/tristanshields/status/1266994214878932993"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Manassas", "name": "Officers pepper-spray Virginia state delegate peacefully protesting", "date": "", "date_text": "", "id": "va-manassas-1"}, {"links": ["https://www.reddit.com/r/rva/comments/gtwdzi/someone_got_pepper_sprayed_from_his_second_floor/", "https://twitter.com/ADeliciousBear/status/1268048506247405568", "https://m.facebook.com/story.php?story_fbid=1123349158037544&id=100010874104187"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Richmond", "name": "Officer sprays a man watching from his balcony", "date": "2020-05-31", "date_text": "May 31st", "id": "va-richmond-1"}, {"links": ["https://twitter.com/i/status/1267650345947271176", "https://twitter.com/i/status/1267613150112858116", "https://twitter.com/i/status/1267601158534815745", "https://twitter.com/myVPM/status/1267605983641075712", "https://www.youtube.com/watch?v=LG_HMghyQZc"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Richmond", "name": "Tear gas fired at peaceful protest", "date": "2020-06-01", "date_text": "June 1st", "id": "va-richmond-2"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guzgf9/police_officer_in_richmond_va_spits_on_and_near_a/"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Richmond", "name": "Officer spits on detained protestor", "date": "2020-06-01", "date_text": "June 1st", "id": "va-richmond-3"}, {"links": ["https://twitter.com/misaacstein/status/1268381797081022464", "https://twitter.com/ckm_news/status/1268382403367763970", "https://twitter.com/brynstole/status/1268381340073971713"], "state": "Louisiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Louisiana.md", "city": "New Orleans", "name": "Police throw tear-gas at protestors on a bridge.", "date": "2020-06-03", "date_text": "June 3rd", "id": "la-neworleans-1"}]} \ No newline at end of file +{"edit_at": "https://github.com/2020PB/police-brutality", "help": "ask @ubershmekel on twitter", "updated_at": "2020-06-09T21:23:01.500161+00:00", "data": [{"links": ["https://twitter.com/courtenay_roche/status/1267653137969623040", "https://twitter.com/yagirlbrookie09/status/1267647898365427714", "https://www.4029tv.com/article/bentonville-police-deploy-tear-gas-on-protesters/32736629#"], "state": "Arkansas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Arkansas.md", "city": "Bentonville", "name": "Law enforcement gas a crowd chanting \u201cwe want peace\u201d right after exiting the building.", "date": "2020-06-01", "date_text": "June 1st", "id": "ar-bentonville-1"}, {"links": ["https://twitter.com/KATVShelby/status/1267554421019475972?s=20", "https://twitter.com/KATVNews/status/1267509911954440194"], "state": "Arkansas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Arkansas.md", "city": "Little Rock", "name": "Peaceful protestors kneeling are shot with an explosive projectile.", "date": "2020-05-31", "date_text": "May 31st", "id": "ar-littlerock-1"}, {"links": ["https://twitter.com/bubbaprog/status/1266908354821206016"], "state": "Utah", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", "city": "Salt Lake City", "name": "Police shove an old man with a cane to the ground", "date": "2020-05-30", "date_text": "May 30th", "id": "ut-saltlakecity-1"}, {"links": ["https://www.reddit.com/r/nextfuckinglevel/comments/gtv4co/downtown_salt_lake_city_may_30th_2020_unarmed/"], "state": "Utah", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", "city": "Salt Lake City", "name": "Police shoot man on the ground in the spine with a beanbag point-blank", "date": "2020-05-30", "date_text": "May 30th", "id": "ut-saltlakecity-2"}, {"links": ["https://twitter.com/greg_doucette/status/1268333029526843392", "https://www.instagram.com/p/CA148-0B14t6mQZqJZYzwq25KdoPzZ5CJmV3oQ0/"], "state": "Utah", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", "city": "Salt Lake City", "name": "Police shoot tear gas canister at man from close range, striking him in the chest", "date": "2020-05-30", "date_text": "May 30th", "id": "ut-saltlakecity-4"}, {"links": ["https://v.redd.it/fl4y919v1q251"], "state": "Utah", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", "city": "Salt Lake City", "name": "Police push and tackle man that is being vocal", "date": "2020-06-01", "date_text": "June 1st", "id": "ut-saltlakecity-3"}, {"links": ["https://twitter.com/CorinneAllen20/status/1268000716884283393", "https://twitter.com/CliffBraun/status/1268038070667849728"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Clayton", "name": "Law enforcement gas teenagers at a park", "date": "2020-06-02", "date_text": "June 2nd", "id": "ca-clayton-1"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gvdl01/they_secluded_him_behind_a_wall_and_looked_around/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Compton", "name": "Police beat person on the ground", "date": "2020-06-01", "date_text": "(believed to be) June 1st", "id": "ca-compton-1"}, {"links": ["https://old.reddit.com/r/orangecounty/comments/gvn42k/oc_sheriff_deputy_forgoing_his_name_badge_to_wear/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Costa Mesa", "name": "Law enforcement concealing badge", "date": "2020-06-03", "date_text": "June 3rd", "id": "ca-costa-mesa-1"}, {"links": ["https://twitter.com/AdoreDelano/status/1267688320735166465"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Hollywood", "name": "Law enforcement arrest people walking, you can hear on the radio \u201cYou should not be driving past anybody, stop and take somebody into custody\u201d.", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-hollywood-1"}, {"links": ["https://twitter.com/mamitbh/status/1267030342243778561"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "La Mesa", "name": "Law enforcement shoot and throw tear gas at protesters", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-lamesa-2"}, {"links": ["https://www.facebook.com/100010947670361/videos/1115087385532840", "https://mobile.twitter.com/MarajYikes/status/1267030131563827200", "https://mobile.twitter.com/chadloder/status/1267290221562871809/photo/1"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "La Mesa", "name": "Police shoot woman in the face", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-lamesa-1"}, {"links": ["https://laist.com/2020/05/31/reporters_injured_protests_police.php", "https://twitter.com/AGuzmanLopez/status/1267269781805137920"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Long Beach", "name": "Reporter shot in neck by rubber bullet", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-longbeach-1"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gxjk67/reposted_wo_officer_name_footage_of_lapd_at_last/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "LAPD officer beats multiple protesters that are filming them during a protest in Beverley Hills", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-losangeles-2"}, {"links": ["https://twitter.com/larryprincxpark/status/1266883515431505920", "https://twitter.com/kendrick38/status/1266997131430133761"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Los Angeles law enforcement beat protesters with batons", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-losangeles-3"}, {"links": ["https://twitter.com/GMA/status/1266934049098121216"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "ABC7 reporters are hit by tear gas", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-losangeles-4"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gxjk67/reposted_wo_officer_name_footage_of_lapd_at_last/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police beat protesters with batons", "date": "2020-05-30", "date_text": "May 30th", "id": "ca-losangeles-5"}, {"links": ["https://twitter.com/MatthewSantoro/status/1266916709304201216"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police fire rubber/pepper bullets at innocent protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-6"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gturig/cop_has_his_knee_on_a_womans_neck_even_though/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police officer puts his knee on a protesters neck, is pulled off", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-7"}, {"links": ["https://twitter.com/SUNDAYLOVERBOY/status/1266890947888996352"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police shoot rubber bullets at protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-8"}, {"links": ["https://twitter.com/LowkeySinistra/status/1267109420955086848", "https://twitter.com/LowkeySinistra/status/1267871561714790401", "https://www.foxnews.com/media/marine-corps-veteran-shot-with-rubber-bullets-by-police-at-protest-i-had-my-hands-up"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Man shot in the head with deterrent rounds, is sent to hospital", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-9"}, {"links": ["https://twitter.com/MattMcGorry/status/1267217360894562306", "https://abc7.com/6231194/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Los Angeles law enforcement beat protesters for no apparent reason.", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-10"}, {"links": ["https://twitter.com/greg_doucette/status/1267095100166987778", "https://twitter.com/sleepydayhana/status/1266930544811671552"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police tackle and arrest protester, indiscriminately beat others with batons and shoot them with less lethals", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-11"}, {"links": ["https://twitter.com/greg_doucette/status/1267277826354556928", "https://twitter.com/SophiaLeeHyun/status/1267216604388978689", "https://twitter.com/chadloder/status/1267314138428014594", "https://v.redd.it/9aiytt50g6251/DASH_1080#mp4", "https://old.reddit.com/r/PublicFreakout/comments/gu8mqp/police_drives_into_protestors_in_los_angeles/", "https://old.reddit.com/r/gifs/comments/gu8inv/la_cop_car_rams_protester_on_live_tv_chopper/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "LAPD SUV drives into protesters, speeds away", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-12"}, {"links": ["https://twitter.com/cwellborn3/status/1267318753571811329"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Los Angeles law enforcement shot at a man on his own balcony", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-losangeles-13"}, {"links": ["https://www.tiktok.com/@w17ard/video/6833082563913977093?lang=en"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police shoot crowd of unarmed protestors with rubber bullets", "date": "2020-05-31", "date_text": "Believed to be May 31st", "id": "ca-losangeles-16"}, {"links": ["https://streamable.com/ja2fw6", "https://www.reddit.com/r/PublicFreakout/comments/gv8vaw/lapd_beating_and_shooting_peaceful_protesters_for/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police strike protestors with batons", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-losangeles-14"}, {"links": ["https://twitter.com/liveinochi/status/1267504585926557696", "https://tikitoks.com/@jacksonmonroe/video/6833397689187716358"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police shoot rubber bullets at two peaceful protestors", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-losangeles-15"}, {"links": ["https://twitter.com/balleralert/status/1268014113105555456", "https://twitter.com/theweirdingwayy/status/1268048483920928768", "https://twitter.com/EarvinD/status/1268087279458775040", "https://abc7.com/deputies-shoot-pepper-balls-at-skateboarders-in-hollywood---video/6230652/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "LAPD drive by shootings at fleeing people announcing \"This is an illegal assembly\"", "date": "2020-06-02", "date_text": "June 2nd", "id": "ca-losangeles-1"}, {"links": ["https://www.instagram.com/p/CBCiZXOlno4/", "https://www.dailynews.com/2020/06/03/dozens-arrested-in-downtown-los-angeles-tuesday-night-after-day-of-peaceful-protests/amp/", "https://abc7.com/society/homeless-man-hit-in-face-with-rubber-bullet-amid-la-protest-witnesses-say/6234476/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Photograph documents aftermath of LAPD firing non-lethal round at face of homeless man in wheelchair", "date": "2020-06-02", "date_text": "June 2", "id": "ca-losangeles-18"}, {"links": ["https://www.reddit.com/r/LosAngeles/comments/gwzgn8/lapd_shoots_less_than_lethal_rounds_directly_at/", "https://www.dailynews.com/2020/06/03/dozens-arrested-in-downtown-los-angeles-tuesday-night-after-day-of-peaceful-protests/", "https://www.instagram.com/p/CBCiZXOlno4/", "https://twitter.com/Terminal_Redux/status/1268870944615026690", "https://abc7.com/society/homeless-man-hit-in-face-with-rubber-bullet-amid-la-protest-witnesses-say/6234476/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police shoot unarmed man in a wheelchair in the face", "date": "2020-06-02", "date_text": "June 2nd", "id": "ca-losangeles-17"}, {"links": ["https://www.instagram.com/p/CBEr2emJRyJ/?igshid=oloj7lgtv81t", "https://www.instagram.com/p/CBBNXXkJs0a/?igshid=jgeposybda4a", "https://abc7.com/protest-arrest-george-floyd-curfews/6234180/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police zip tie protesters and lock them inside cages", "date": "2020-06-03", "date_text": "June 3rd", "id": "ca-losangeles-19"}, {"links": ["https://abc7.com/lakewood-protest-tear-gas-black-lives-matter-fired-during/6235358/", "https://www.reddit.com/r/longbeach/comments/gyma59/lakewoods_peaceful_protest_ends_in_cops_shooting/ftb8mvt?utm_source=share&utm_medium=web2x", "https://www.reddit.com/r/longbeach/comments/gyma59/lakewoods_peaceful_protest_ends_in_cops_shooting/?utm_source=share&utm_medium=web2x"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Los Angeles", "name": "Police fire projectiles at protesters and discharge teargas", "date": "2020-06-05", "date_text": "June 5th", "id": "ca-los-angeles-20"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gttdkj/cop_driving_into_crowds_of_protestors/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Oakland", "name": "Officer runs down protesters with police cruiser", "date": "2020-05-30", "date_text": "Believed to be May 30th", "id": "ca-oakland-1"}, {"links": ["https://twitter.com/SarahBelleLin/status/1266980899301683200"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Oakland", "name": "Oakland law enforcement shoot a reporter", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-oakland-2"}, {"links": ["https://old.reddit.com/r/PublicFreakout/comments/gv2lku/news_chopper_pans_out_as_riverside_county_sheriff/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Riverside", "name": "Law enforcement break a car window for no apparent reason", "date": "2020-06-02", "date_text": "June 2nd", "id": "ca-riverside-1"}, {"links": ["https://youtu.be/pRmBO34aXME", "https://twitter.com/mynameschazz/status/1266978442722947072?s=21"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Sacramento", "name": "Police shoot protester in the head", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-sacramento-1"}, {"links": ["https://www.facebook.com/danny.garza.167/videos/10222535335080905/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Sacramento", "name": "Sacramento law enforcement shoot shoot protesters and then announce their assembly unlawful", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-sacramento-2"}, {"links": ["https://twitter.com/greg_doucette/status/1268334584443342850", "https://twitter.com/reereeisme65/status/1267378345894789125"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Sacramento", "name": "Police choke man and push woman filming event to the ground", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-sacramento-3"}, {"links": ["https://www.youtube.com/watch?v=6uNySPSwhAI&feature=youtu.be", "https://www.reddit.com/r/2020PoliceBrutality/comments/gynpd8/police_block_off_sidewalks_and_start_shooting_at/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Diego", "name": "Police kettle and fire on fleeing protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-sandiego-2"}, {"links": ["https://twitter.com/greg_doucette/status/1269009907367493634"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Diego", "name": "Police abduct woman in unmarked van", "date": "2020-06-04", "date_text": "June 4th", "id": "ca-sandiego-1"}, {"links": ["https://twitter.com/caseylc9/status/1267285516262596608"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Francisco", "name": "San Francisco law enforcement shove man off the sidewalk onto the ground", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-sanfrancisco-1"}, {"links": ["https://twitter.com/junkieanteater/status/1266603252839141377", "https://www.reddit.com/r/PublicFreakout/comments/gtksgq/cop_decides_to_shoot_at_protestor_who_hurt_his/", "https://www.reddit.com/r/PublicFreakout/comments/gtg2cb/cop_waits_in_excitement_like_its_a_game/", "https://twitter.com/bowiezamudio/status/1266598285206106113", "https://twitter.com/kakimeows/status/1266982771005616128"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Jose", "name": "Police shoot a projectile at a protestor", "date": "2020-05-29", "date_text": "May 29th", "id": "ca-sanjose-1"}, {"links": ["https://twitter.com/DeadByDawn101/status/1268825100385521665"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Jose", "name": "Officer puts knee on neck of protester", "date": "2020-05-29", "date_text": "May 29th", "id": "ca-sanjose-3"}, {"links": ["https://twitter.com/greg_doucette/status/1269267786792144898", "https://abc7news.com/man-who-trains-san-jose-police-about-bias-severely-injured-by-riot-gun-during-protest/6234212/", "https://www.latimes.com/california/story/2020-06-06/community-organizer-shot-by-rubber-bullet-during-protest"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Jose", "name": "Police fire on community activist", "date": "2020-05-29", "date_text": "May 29th", "id": "ca-sanjose-2"}, {"links": ["https://twitter.com/ma7dz/status/1267697838244298752"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "San Luis Obispo", "name": "Law enforcement fire on crowd with their arms up chanting", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-sanluisobispo-1"}, {"links": ["https://twitter.com/YourAnonCentral/status/1266991237355069442"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Santa Ana", "name": "Police open fire on protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-santaana-1"}, {"links": ["https://twitter.com/GIFsZP/status/1267241803750813703"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Santa Monica", "name": "Police fire pepper bullets into apartment", "date": "2020-05-31", "date_text": "May 31st", "id": "ca-santamonica-1"}, {"links": ["https://www.theguardian.com/us-news/2020/jun/04/vallejo-police-kill-unarmed-man-california"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Vallejo", "name": "Police fatally shoot unarmed 22 year old", "date": "2020-06-01", "date_text": "June 1st", "id": "ca-vallejo-1"}, {"links": ["https://www.instagram.com/p/CA7KMc9pX5S/"], "state": "California", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/California.md", "city": "Walnut Creek", "name": "Armored law enforcement vehicle threatens protestors", "date": "2020-06-02", "date_text": "June 2nd", "id": "ca-walnutcreek-1"}, {"links": ["https://www.kansascity.com/news/local/article243188436.html", "https://www.facebook.com/KuhlPics/photos/a.467614509924515/3214027235283215/?type=3&theater"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police pepper spray and arrest protestor holding sign", "date": "2020-05-30", "date_text": "May 30th", "id": "mo-kansascity-5"}, {"links": ["https://twitter.com/RayVaca/status/1266959833753890816", "https://twitter.com/whoareyoujudy_/status/1266968858159702017"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police pepper spray protestors walking away and later arrest one of them", "date": "2020-05-31", "date_text": "May 31st", "id": "mo-kansascity-6"}, {"links": ["https://twitter.com/imunoz03/status/1266908372881768448"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police tear gas a park", "date": "2020-05-31", "date_text": "May 31st", "id": "mo-kansascity-1"}, {"links": ["https://twitter.com/Elise_Villa/status/1267310319526989824", "https://old.reddit.com/r/PublicFreakout/comments/guswxo/he_wasnt_even_addressing_the_police/"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Kansas City police attempt to arrest a man leading the protest then spray the crowd", "date": "2020-05-31", "date_text": "May 31st", "id": "mo-kansascity-2"}, {"links": ["https://www.cnn.com/2020/06/02/us/kansas-city-police-spray-protester-who-yelled/index.html", "https://twitter.com/weslyinfinity/status/1267321172309544960?"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police arrest man for speaking and teargas nearby protestors", "date": "2020-06-01", "date_text": "June 1st", "id": "mo-kansascity-3"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gut8n1/in_kansas_city/", "https://www.google.ca/maps/place/Giralda/@39.0425007,-94.5880276,3a,75y,208.49h,97.09t/data="], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "Kansas City", "name": "Police pull away protestor and pepper sprays others", "date": "2020-06-01", "date_text": "June 1st", "id": "mo-kansascity-4"}, {"links": ["https://www.ksdk.com/article/news/local/video-shows-florissant-officer-in-unmarked-car-hit-man-who-appears-to-be-running-away/63-5db688ff-2f31-4e55-9d24-0707ecdb677f", "https://www.facebook.com/realstlnews/videos/2610967669219012/"], "state": "Missouri", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", "city": "St. Louis", "name": "Florissant officer hits man with unmarked police vehicle", "date": "2020-06-02", "date_text": "June 2nd", "id": "mo-stlouis-1"}, {"links": ["https://twitter.com/PhxProtestLIVE/status/1268390978571825156?s=20"], "state": "Arizona", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Arizona.md", "city": "Phoenix", "name": "Officer tackles and arrests person walking home from protest", "date": "2020-05-30", "date_text": "May 30th", "id": "az-phoenix-1"}, {"links": ["https://www.kcci.com/article/developing-protesters-face-off-with-police-in-downtown-des-moines/32717301"], "state": "Iowa", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", "city": "Des Moines", "name": "Police repeatedly shoot tear gas into crowd, even after crowd has dispersed", "date": "2020-05-29", "date_text": "May 29th", "id": "ia-desmoines-2"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gxlfdo/police_truck_shoots_at_cars_hitting_mother_and/?utm_source=share&utm_medium=web2x", "https://www.tiktok.com/@jakegracey/video/6834936818799004934?source=h5_m", "https://www.google.ca/maps/@41.6293563,-93.6988361,3a,75y,358.27h,68.85t/data="], "state": "Iowa", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", "city": "Des Moines", "name": "Police truck shoots at cars, hitting mother and breaking her finger", "date": "2020-05-30", "date_text": "May 30th", "id": "ia-desmoines-3"}, {"links": ["https://twitter.com/RachelSB/status/1267260438900867074", "https://www.desmoinesregister.com/story/news/2020/05/31/register-reporter-arrested-while-covering-protest/5304560002/"], "state": "Iowa", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", "city": "Des Moines", "name": "Police detail Des Moines Register reporter while covering event", "date": "2020-05-31", "date_text": "May 31st", "id": "ia-desmoines-7"}, {"links": ["https://twitter.com/katie_akin/status/1267694434847731713", "https://www.desmoinesregister.com/story/news/2020/06/02/des-moines-police-pepper-spray-journalist-iowa-george-floyd-protest-des-moines-register-reporter/3126478001/"], "state": "Iowa", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", "city": "Des Moines", "name": "Police pepper spray Des Moines Register reporter even as she repeatedly announced herself as press", "date": "2020-06-01", "date_text": "June 1st", "id": "ia-desmoines-4"}, {"links": ["https://twitter.com/greg_doucette/status/1268235074580987906"], "state": "Iowa", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", "city": "Des Moines", "name": "Police use or threaten to use pepper-spray in an elevator on apartment residents trying to go home", "date": "2020-06-02", "date_text": "(believed to be) June 2nd", "id": "ia-desmoines-1"}, {"links": ["https://www.pinknews.co.uk/2020/06/05/police-raid-blazing-saddle-des-moines-iowa-black-lives-matter-stonewall/?fbclid=IwAR20SUPSke3O_U2jqXaicl3dOcKwKPYlG5eOc131oao76Z2rEXXz0-ASORQ", "http://iowainformer.com/politics/2020/06/des-moines-gay-bar-raided-amid-black-lives-matter-protests-as-pride-month-begins/", "https://twitter.com/aaronpcalvin/status/1268708285517004801", "https://www.google.ca/maps/place/The+Blazing+Saddle/@41.590306,-93.6114412,3a,75y,275.31h,90t/data="], "state": "Iowa", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", "city": "Des Moines", "name": "Armed police raid gay bar helping wounded Black Lives Matter protesters on the first day of Pride Month", "date": "2020-06-05", "date_text": "June 5th", "id": "ia-desmoines-5"}, {"links": ["https://twitter.com/DJPAIMON/status/1268399580753858561"], "state": "Iowa", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", "city": "Iowa City", "name": "Police shoot tear gas at peaceful protestors who have their hands up", "date": "2020-06-03", "date_text": "June 3rd", "id": "ia-iowacity-1"}, {"links": ["https://twitter.com/itsraiialex/status/1266770032719040513"], "state": "Nevada", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nevada.md", "city": "Las Vegas", "name": "Police arrest a man for speaking at them from a distance.", "date": "2020-05-29", "date_text": "May 29th", "id": "nv-lasvegas-3"}, {"links": ["https://twitter.com/LasVegasLocally/status/1267210841595604992", "https://www.instagram.com/p/CA14rooHIC6/?utm_source=ig_web_copy_link"], "state": "Nevada", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nevada.md", "city": "Las Vegas", "name": "Police shove and drag man through the street", "date": "2020-05-31", "date_text": "May 31st", "id": "nv-lasvegas-1"}, {"links": ["https://mobile.twitter.com/chadloder/status/1267168204863926274"], "state": "Nevada", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nevada.md", "city": "Las Vegas", "name": "Police charge into peaceful crowd shouting \"grab anybody\"", "date": "2020-06-01", "date_text": "June 1st", "id": "nv-lasvegas-2"}, {"links": ["https://twitter.com/mattaustinTV/status/1267189278691528706", "https://twitter.com/RACCEWtby/status/1268173057375514624", "https://twitter.com/Calibud_Art/status/1268274760250777600"], "state": "Connecticut", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Connecticut.md", "city": "Waterbury", "name": "Police tackle and detain 6 protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "ct-waterbury-2"}, {"links": ["https://twitter.com/Youbeenafannn/status/1268253924471037959"], "state": "Connecticut", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Connecticut.md", "city": "Waterbury", "name": "Officer forces women into car and wrestles with another", "date": "2020-06-03", "date_text": "June 3rd", "id": "ct-waterbury-1"}, {"links": ["https://twitter.com/ItsKadynC/status/1266967646345613317", "https://twitter.com/the7goonies/status/1266989439160590336", "https://papost.org/2020/05/31/erie-woman-who-was-kicked-by-police-officer-saysi-was-100-percent-peaceful/"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Erie", "name": "Police officer maces woman and kicks her in the head", "date": "2020-05-31", "date_text": "May 31st", "id": "pa-erie-1"}, {"links": ["https://twitter.com/greg_doucette/status/1266862623041167362"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Harrisburg", "name": "Police pepperspray protesters helping someone stand up", "date": "2020-05-30", "date_text": "May 30th", "id": "pa-harrisburg-1"}, {"links": ["https://twitter.com/UR_Ninja/status/1266913490301792257"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police beat down man", "date": "2020-05-30", "date_text": "May 30th", "id": "pa-philadelphia-1"}, {"links": ["https://youtu.be/QDcCFN_LQPA"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police drag cooperating man from car and punch him in the face", "date": "", "date_text": "", "id": "pa-philadelphia-2"}, {"links": ["https://metro.co.uk/2020/06/01/cop-put-baton-george-floyd-protesters-hand-put-knee-neck-12789427/", "https://twitter.com/mkultranews/status/1267305587206807553"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Philadelphia cops beat man and forcefully put his fingers on their baton.", "date": "2020-05-31", "date_text": "May 31st", "id": "pa-philadelphia-3"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guve5f/philadelphia_police_traps_protesters_on_highway/", "https://twitter.com/bbcease/status/1267582823428501508", "https://www.youtube.com/watch?v=cXzWicPCNQg", "https://youtu.be/oCVe8mXOU94", "https://vimeo.com/425235774", "https://youtu.be/srC5l--cn14"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Philadelphia Police Trap Protesters on Highway, Then Tear Gas Them and Shoot Rubber Bullets", "date": "2020-06-01", "date_text": "June 1st", "id": "pa-philadelphia-4"}, {"links": ["https://twitter.com/d0wnrrrrr/status/1267691766188310528"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police officer pepper-sprays three people on their knees", "date": "2020-06-01", "date_text": "believed to be June 1st", "id": "pa-philadelphia-5"}, {"links": ["https://www.inquirer.com/news/philadelphia-police-beating-temple-student-evan-gorski-protest-20200604.html", "https://twitter.com/greg_doucette/status/1268766216161763328", "https://twitter.com/Peopledelphia/status/1267588991655784448", "https://www.inquirer.com/news/philadelphia-police-beating-temple-student-joseph-bologna-protest-20200605.html", "https://whyy.org/articles/philly-police-commander-videotaped-beating-protesters-linked-to-narcotics-scandal-misconduct/"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police shove protestors and strike man across the face with a baton", "date": "2020-06-01", "date_text": "Jun 1st", "id": "pa-philadelphia-7"}, {"links": ["https://twitter.com/tippedminimum/status/1268001268406136832"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Officer attacks woman for no apparent reason", "date": "2020-06-01", "date_text": "June 1st", "id": "pa-philadelphia-8"}, {"links": ["https://twitter.com/greg_doucette/status/1268200800649707526"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Philadelphia", "name": "Police kneel on man who says \"I can't breathe\", officer yells profanities back", "date": "2020-06-03", "date_text": "believed to be June 3rd", "id": "pa-philadelphia-6"}, {"links": ["https://www.youtube.com/watch?v=TxHxU6nhzzQ", "https://twitter.com/PaulaReedWard/status/1268547369618026503", "https://www.post-gazette.com/news/crime-courts/2020/06/03/East-Liberty-protest-Abigail-Rubio-says-Pittsburgh-police-intimidated-video/stories/202006030158"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Pittsburgh", "name": "Officer pepper-sprays a woman who is on her knees with her hands up", "date": "", "date_text": "", "id": "pa-pittsburgh-1"}, {"links": ["https://www.reddit.com/r/pittsburgh/comments/guzshz/police_declaring_an_unlawful_assembly_against_a/", "https://www.facebook.com/BenjaminKFerris/posts/3091613010894973", "https://twitter.com/gautamyadav818/status/1267606317893550080"], "state": "Pennsylvania", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", "city": "Pittsburgh", "name": "Police fire tear gas and rubber bullets on peaceful assembly", "date": "2020-06-01", "date_text": "June 1st", "id": "pa-pittsburgh-2"}, {"links": ["https://twitter.com/secretlaith/status/1268251322467450880"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "Buffalo", "name": "Police tackle man giving interview", "date": "2020-06-01", "date_text": "June 1st", "id": "ny-buffalo-1"}, {"links": ["https://twitter.com/WBFO/status/1268712530358292484", "https://news.wbfo.org/post/graphic-video-buffalo-police-officers-violently-shove-man-ground", "https://www.facebook.com/watch/?ref=external&v=2489206818056597", "https://www.wivb.com/news/five-people-arrested-one-person-injured-during-protest-activity-in-niagara-square/", "https://www.reddit.com/r/PublicFreakout/comments/gwv7k4/just_about_an_hour_ago_police_officers_shove_man/fsxfeb3/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "Buffalo", "name": "Police shove elderly man, causing him to fall and hit the back of his head", "date": "2020-06-04", "date_text": "June 4th", "id": "ny-buffalo-2"}, {"links": ["https://twitter.com/PhotoJazzy/status/1269056626843099137"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "Buffalo", "name": "Reporter shot at after identifying himself", "date": "2020-06-05", "date_text": "June 5th", "id": "ny-buffalo-3"}, {"links": ["https://twitter.com/whitney_hu/status/1266540710188195843", "https://twitter.com/JasonLemon/status/1266529475757510656", "https://twitter.com/zayer_dounya/status/1266581597760831489"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police shove woman to the ground, inducing a seizure", "date": "2020-05-29", "date_text": "May 29th", "id": "ny-newyorkcity-1"}, {"links": ["https://twitter.com/DriveWendys/status/1266555286678048770"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police drive by man and hit him with car door", "date": "2020-05-29", "date_text": "May 29th", "id": "ny-newyorkcity-2"}, {"links": ["https://www.cityandstateny.com/articles/politics/news-politics/even-black-lawmakers-get-pepper-sprayed.html", "https://twitter.com/GwynneFitz/status/1266522692326428672"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Member of the New York State Assembly pepper-sprayed", "date": "2020-05-29", "date_text": "May 29th", "id": "ny-newyorkcity-3"}, {"links": ["https://twitter.com/Stoney_Holiday/status/1266616250685444096", "https://www.instagram.com/p/CAzSOtGlKQY/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police officer throws man against police car", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-4"}, {"links": ["https://twitter.com/j0ncampbell/status/1266514356071735296"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "NYPD beat people with batons", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-5"}, {"links": ["https://twitter.com/ZachReports/status/1266557305107202049", "https://twitter.com/BTSsavedmylife9/status/1266754310161006594"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Cop shoves a guy into a metal fence", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-6"}, {"links": ["https://twitter.com/crankberries/status/1266584559245803522", "https://twitter.com/greg_doucette/status/1266850004720812032"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Cop shoving a person to the ground towards metal trash bins", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-7"}, {"links": ["https://twitter.com/HuffPost/status/1266936484692725766", "https://www.huffpost.com/entry/huffpost-reporter-chris-mathias-arrested_n_5ed320d9c5b640cb8341c921"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Huffpost reporter is arrested by NYPD", "date": "2020-05-30", "date_text": "May 30th", "id": "ny-newyorkcity-8"}, {"links": ["https://twitter.com/_doreenpt/status/1266994439039455232"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police pull off protesters mask to pepper spray him", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-9"}, {"links": ["https://twitter.com/pgarapon/status/1266885414016688134", "https://twitter.com/mkultranews/status/1266893237450498048"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "NYPD rams protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-10"}, {"links": ["https://twitter.com/theactivistTati/status/1266889419858075649"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police assault protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-11"}, {"links": ["https://twitter.com/zellnor4ny/status/1266802303807500288"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "State senator pepper sprayed", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-12"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gu2u28/more_documented_aggression_in_flatbush_brooklyn/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Protesters with hands up assaulted by police", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-15"}, {"links": ["https://twitter.com/tylergabriel_/status/1267287516345925632"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police injure journalist", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-newyorkcity-16"}, {"links": ["https://wapo.st/2Mx7WY6", "https://www.washingtonpost.com/national/protests-police-brutality-video/2020/06/05/a9e66568-a768-11ea-b473-04905b1af82b_story.html"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Officers beat man until his face and belongings are bloody", "date": "2020-05-31", "date_text": "May 31", "id": "ny-newyorkcity-17"}, {"links": ["https://mobile.twitter.com/jangelooff/status/1267308341660979200"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Officer threatens protestors with what appears to be a handgun", "date": "2020-06-01", "date_text": "June 1st", "id": "ny-newyorkcity-18"}, {"links": ["https://twitter.com/jhermann/status/1268043720399691776", "https://twitter.com/altochulo/status/1268018561571840000"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police officer body slams protestor", "date": "2020-06-02", "date_text": "June 2nd", "id": "ny-newyorkcity-19"}, {"links": ["https://www.lgbtqnation.com/2020/06/cops-beat-lgbtq-protestors-leaving-demonstration-stonewall-inn/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Police beat protesters leaving Stonewall Inn solidarity protest", "date": "2020-06-02", "date_text": "June 2nd", "id": "ny-newyorkcity-20"}, {"links": ["https://www.reddit.com/r/newyorkcity/comments/gv8aft/police_beat_man_without_even_attempting_to_arrest/", "https://www.reddit.com/r/PublicFreakout/comments/gv43ar/police_beat_man_without_even_attempting_to_arrest/"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Officers beat man with batons", "date": "2020-06-02", "date_text": "(Believed to be) June 2nd", "id": "ny-newyorkcity-21"}, {"links": ["https://twitter.com/joshfoxfilm/status/1268366550475603969", "https://www.dailymail.co.uk/news/article-8388515/NYPD-cop-beats-cyclist-nightstick-tries-away.html"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Man walking his bike beaten by officers with batons", "date": "2020-06-03", "date_text": "June 3rd", "id": "ny-newyorkcity-22"}, {"links": ["https://twitter.com/johnknefel/status/1268736946031001607"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "NYPD Officers hit and knock down a protestor and a journalist", "date": "2020-06-04", "date_text": "June 4th", "id": "ny-newyorkcity-23"}, {"links": ["https://twitter.com/sa0un/status/1268933117827571714"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Officers arrest cyclists; a man who questions police is clubbed in the neck", "date": "2020-06-04", "date_text": "June 4th", "id": "ny-newyorkcity-24"}, {"links": ["https://twitter.com/AndomForNY/status/1269065176814358529"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "NYPD pushes crowd into tight space and attacks several with batons", "date": "2020-06-05", "date_text": "June 5th", "id": "ny-newyorkcity-25"}, {"links": ["https://www.reddit.com/r/Brooklyn/comments/gy40fz/nypd_aggressively_arrest_cyclist_on_blm_group_ride/?utm_source=share&utm_medium=web2x"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "New York City", "name": "Multiple police officers tackle cyclist protester one officer punches head of protester", "date": "2020-06-06", "date_text": "June 6th", "id": "ny-newyorkcity-26"}, {"links": ["https://twitter.com/bleeezyy_/status/1266894195865931778"], "state": "New York", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", "city": "Rochester", "name": "Police shoot at people filming", "date": "2020-05-31", "date_text": "May 31st", "id": "ny-rochester-1"}, {"links": ["https://twitter.com/joeguillen/status/1266563974658744321"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Officer charges through other officers to attack a protestor who is backing away", "date": "2020-05-29", "date_text": "May 29th", "id": "mi-detroit-4"}, {"links": ["https://twitter.com/julietmariaa/status/1266568356976635904"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Riot police charge peaceful protestors", "date": "2020-05-29", "date_text": "May 29th", "id": "mi-detroit-5"}, {"links": ["https://twitter.com/AkramG03/status/1266876680142049282"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Police shove and scream at men walking down the street", "date": "2020-05-30", "date_text": "May 30th", "id": "mi-detroit-1"}, {"links": ["https://twitter.com/DetroitReporter/status/1266957225114861568", "https://www.freep.com/story/news/local/michigan/detroit/2020/06/01/journalists-targeted-police-protests-detroit/5302659002/"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Police pepperspray reporter holding up media badge", "date": "2020-05-30", "date_text": "May 30th", "id": "mi-detroit-2"}, {"links": ["https://twitter.com/reporterdavidj/status/1266966021077962752"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Police shoot rubber bullets at reporters", "date": "2020-05-30", "date_text": "May 30th", "id": "mi-detroit-3"}, {"links": ["https://twitter.com/TheModLibrarian/status/1266587927783620613"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Detroit", "name": "Woman is charged by police and thrown to the ground", "date": "2020-05-30", "date_text": "May 30th", "id": "mi-detroit-6"}, {"links": ["https://old.reddit.com/r/Bad_Cop_No_Donut/comments/gub8fx/police_shoot_protestor_point_blank_in_the_face/", "https://www.fox17online.com/news/local-news/grand-rapids/grpd-conducting-internal-investigation-after-viral-video-of-man-being-pepper-sprayed", "https://www.reddit.com/r/2020PoliceBrutality/comments/gv3xuu/police_in_grand_rapids_michigan_spray_a_man/"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Grand Rapids", "name": "Police spray unarmed man with pepperspray and shoot him in the face with a teargas canister", "date": "2020-05-31", "date_text": "May 31st", "id": "mi-grandrapids-1"}, {"links": ["https://twitter.com/i/status/1267677463850745858", "https://www.facebook.com/BlaineBurnett11/videos/963503949886/"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Kalamazoo", "name": "Police fire tear gas at prone protesters", "date": "2020-06-01", "date_text": "June 1st", "id": "mi-kalamazoo-1"}, {"links": ["https://streamable.com/xvlky1", "https://streamable.com/0wfiu3", "https://www.mlive.com/news/kalamazoo/2020/06/my-heart-was-wrenched-with-pain-assistant-chief-says-of-ordering-tear-gas-on-protesters.html", "https://ibb.co/Fgrwqkj"], "state": "Michigan", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", "city": "Kalamazoo", "name": "Police fire tear gas at peaceful protesters", "date": "2020-06-02", "date_text": "June 2nd", "id": "mi-kalamazoo-2"}, {"links": ["https://twitter.com/BruceBrownJr/status/1266979654499479552"], "state": "Oklahoma", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oklahoma.md", "city": "Oklahoma City", "name": "Person with hands up struck in chest by projectile", "date": "2020-05-30", "date_text": "May 30th", "id": "ok-oklahomacity-1"}, {"links": ["https://twitter.com/perfectlyg0lden/status/1267014293628870656"], "state": "Unknown Location", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Unknown Location.md", "city": "", "name": "Compilation of incidents", "date": "2020-05-31", "date_text": "May 31st", "id": "tbd-tbd-1"}, {"links": ["https://twitter.com/samjwc/status/1267355060666654720"], "state": "Unknown Location", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Unknown Location.md", "city": "", "name": "Officer beats a protestor while pinning him on the ground", "date": "", "date_text": "", "id": "tbd-tbd-2"}, {"links": ["https://twitter.com/Desi_Stennett/status/1266996885824380929"], "state": "Tennessee", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Tennessee.md", "city": "Memphis", "name": "Police swarm a woman without provocation", "date": "2020-05-31", "date_text": "May 31st", "id": "tn-memphis-1"}, {"links": ["https://www.facebook.com/story.php?story_fbid=3011143412313088&id=100002523772680", "https://vtdigger.org/2020/06/03/police-arrest-4-at-st-johnsbury-george-floyd-protest/"], "state": "Vermont", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Vermont.md", "city": "St. Johnsbury", "name": "Police shove a protesting woman down a set of concrete steps.", "date": "2020-06-03", "date_text": "June 3rd", "id": "vt-stjohnsbury-1"}, {"links": ["https://mobile.twitter.com/chadloder/status/1267011092045115392"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Officer pins protestor by pushing his knee into his neck", "date": "2020-05-30", "date_text": "May 30th", "id": "wa-seattle-1"}, {"links": ["https://twitter.com/gunduzbaba1905/status/1266937500607614982"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police beat unarmed man on the ground", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-2"}, {"links": ["https://www.reddit.com/r/Bad_Cop_No_Donut/comments/gtt3w8/i_caught_the_moment_seattle_police_pepper_sprayed/"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police indiscriminately pepper spray peaceful protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-3"}, {"links": ["https://www.fox10phoenix.com/news/video-shows-milk-poured-over-face-of-child-pepper-sprayed-in-seattle-protest"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police pepper spray young child", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-4"}, {"links": ["https://www.reddit.com/r/Seattle/comments/gu3qq1/cop_just_casually_tosses_tear_gas_at_my_feet_like/", "https://www.google.ca/maps/@47.6117535,-122.3363867,3a,75y,340.76h,98.03t/data="], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police throw tear gas at peaceful protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-8"}, {"links": ["https://twitter.com/EDDIFUL/status/1267338642617364481", "https://www.reddit.com/r/PublicFreakout/comments/gv9g5n/the_police_were_spotted_instigating_violence/", "https://peertube.live/videos/watch/9e9323af-3ea1-4d3c-856d-a7f0a66688e7"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police officer pulls protestor to the ground unprovoked", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-6"}, {"links": ["https://twitter.com/The_Stepover/status/1267236742278463488", "https://twitter.com/eavu__/status/1267260549814870016"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Law enforcement officer punches pinned protestor", "date": "2020-05-31", "date_text": "May 31st", "id": "wa-seattle-12"}, {"links": ["https://twitter.com/The_Stepover/status/1267237940184231936"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Law enforcement officers throw flashbangs into peaceful crowd", "date": "2020-05-31", "date_text": "(Believed to be) May 31st", "id": "wa-seattle-7"}, {"links": ["https://www.reddit.com/r/Seattle/comments/gv0ru3/this_is_the_moment_it_all_happened/", "https://www.reddit.com/r/PublicFreakout/comments/gv1spo/the_moment_seattle_police_instigate_a_riot_over_a/"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police initiate violence", "date": "2020-06-01", "date_text": "June 1st", "id": "wa-seattle-9"}, {"links": ["https://twitter.com/Acyn/status/1267673936659021830?s=20"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police strike active newscrew with flashbang", "date": "2020-06-01", "date_text": "June 1st", "id": "wa-seattle-10"}, {"links": ["https://twitter.com/catsayshello/status/1268073344814866432", "https://www.instagram.com/tv/CA63KMnlVvu/?igshid=hfp3uoaqe23p", "https://old.reddit.com/r/Seattle/comments/gv0ru3/this_is_the_moment_it_all_happened/"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Officers deploy flashbangs and pepper spray peaceful protesters", "date": "2020-06-02", "date_text": "June 2nd", "id": "wa-seattle-5"}, {"links": ["https://twitter.com/i/status/1269352173663592449"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Officer chokes and places knee on neck of woman", "date": "2020-06-06", "date_text": "June 6th", "id": "wa-seattle-11"}, {"links": ["https://twitter.com/MikeApe7/status/1269533701194444800", "https://twitter.com/MikeApe7/status/1269538201254805504"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police kettle protesters to force them to disperse through tear-gas", "date": "2020-06-06", "date_text": "June 6th", "id": "wa-seattle-13"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gycscp/cant_go_1_day_without_teargaslighting_us/?utm_source=share&utm_medium=web2x", "https://www.forbes.com/sites/jemimamcevoy/2020/06/08/seattle-police-use-tear-gas-against-protestors-despite-city-ban/#7e98a1d5b4bc"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Police use tear gas on protestors", "date": "2020-06-07", "date_text": "June 7th", "id": "wa-seattle-15"}, {"links": ["https://twitter.com/chaseburnsy/status/1269890344331571201", "https://www.reddit.com/r/Seattle/comments/gywxhz/folks_i_need_your_help/", "https://imgur.com/a/fWkU0SA"], "state": "Washington", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", "city": "Seattle", "name": "Woman hit with police projectile resumes breathing after CPR, delivered to hospital", "date": "2020-06-07", "date_text": "June 7th", "id": "wa-seattle-14"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gt69qe/police_start_shooting_press_with_some_kinda/", "https://twitter.com/greg_doucette/status/1266557059606163456", "https://twitter.com/KaitlinRustWAVE/status/1268218653104693248"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Police shoot rubber bullets at reporter", "date": "2020-05-30", "date_text": "May 30th", "id": "ky-louisville-2"}, {"links": ["https://twitter.com/shannynsharyse/status/1267015577266249728", "https://twitter.com/shannynsharyse/status/1266631722239766528"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Young woman shot in the head by a rubber bullet", "date": "2020-05-30", "date_text": "May 30th", "id": "ky-louisville-4"}, {"links": ["https://twitter.com/nataliealund/status/1266877181164089349", "https://twitter.com/WFPLNews/status/1266923468102262784"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Police smashing water bottles", "date": "2020-05-31", "date_text": "May 31st", "id": "ky-louisville-1"}, {"links": ["https://twitter.com/Itz5500Gillz/status/1267454024288292867"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Police shoot at cars in traffic from overpass", "date": "2020-05-31", "date_text": "May 31st", "id": "ky-louisville-5"}, {"links": ["https://reddit.com/r/PublicFreakout/comments/gutezm/multiple_kentucky_state_police_troopers_tackled/"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Louisville police swarm and beat a man screaming on the ground", "date": "2020-06-01", "date_text": "Believed to be June 1st", "id": "ky-louisville-3"}, {"links": ["https://edition.cnn.com/2020/06/02/us/david-mcatee-louisville-what-we-know-trnd/index.html", "https://edition.cnn.com/2020/06/01/us/louisville-protests-man-shot-dead/index.html", "https://youtu.be/wDg9fev67lw", "https://mobile.twitter.com/chadloder/status/1267555717751296000", "https://www.nytimes.com/video/us/100000007175316/the-david-mcatee-shooting-did-aggressive-policing-lead-to-a-fatal-outcome.html"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Restaurant owner shot and killed", "date": "2020-06-01", "date_text": "June 1st", "id": "ky-louisville-6"}, {"links": ["https://www.reddit.com/r/Louisville/comments/gw5joa/peaceful_protesters_marching_in_st_mathews_get/"], "state": "Kentucky", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", "city": "Louisville", "name": "Protestors in St. Matthews shot with pepper rounds", "date": "2020-06-03", "date_text": "June 3rd", "id": "ky-louisville-7"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guxm5o/police_arresting_a_peaceful_protestor_for_simply/?utm_source=share&utm_medium=ios_app&utm_name=iossmf", "https://www.reddit.com/r/iamatotalpieceofshit/comments/gugrfa/man_reaches_out_with_love_to_the_cops_and_they/", "https://www.postandcourier.com/news/he-told-charleston-police-i-am-not-your-enemy-then-he-was-handcuffed/article_e7de4b0a-a43f-11ea-a019-1f9e6a20ea55.html"], "state": "South Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/South Carolina.md", "city": "Charleston", "name": "Police Individually Target Peaceful Protestor and Arrest Him", "date": "2020-05-31", "date_text": "May 31st", "id": "sc-charleston-1"}, {"links": ["https://twitter.com/track4life_bry/status/1268313958479532034"], "state": "South Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/South Carolina.md", "city": "Location Unknown", "name": "Police Assault Suspect on Ground During Arrest", "date": "2020-06-03", "date_text": "June 3rd", "id": "sc-unknown-1"}, {"links": ["https://www.cnn.com/2020/06/05/us/atlanta-police-body-slam-woman/index.html"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Atlanta", "name": "Officer body slams woman onto ground", "date": "2020-05-29", "date_text": "May 29th", "id": "ga-atlanta-1"}, {"links": ["https://twitter.com/ava/status/1266797973834395648?s=20", "https://twitter.com/Brittm_tv/status/1266497944796225538"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Atlanta", "name": "Officer shoves a woman with his bike", "date": "2020-05-29", "date_text": "May 29th", "id": "ga-atlanta-2"}, {"links": ["https://twitter.com/danielvankirk/status/1266947767840063489", "https://www.instagram.com/p/CA27quMhqJA/", "https://twitter.com/SarahBaska/status/1267308455225774080?s=20", "https://twitter.com/Brittm_tv/status/1267147449577148423", "https://www.standard.co.uk/news/world/atlanta-police-officers-fired-dragging-students-car-protest-a4457371.html#gsc.tab=0"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Atlanta", "name": "Cops pull people out of their car, taze them", "date": "2020-05-30", "date_text": "May 30th", "id": "ga-atlanta-3"}, {"links": ["https://twitter.com/ANGELCUCCl/status/1266939757252280321"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Atlanta", "name": "Police punch man on the ground, then tackle woman to ground who objects", "date": "2020-05-30", "date_text": "May 30th", "id": "ga-atlanta-4"}, {"links": ["https://twitter.com/DanWolken/status/1266877753015570433", "https://www.google.ca/maps/@33.7579387,-84.3934527,3a,75y,90.87h,90t/data="], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Atlanta", "name": "Photographer tackled to the ground by four police officers", "date": "2020-05-30", "date_text": "May 30th", "id": "ga-atlanta-5"}, {"links": ["https://www.facebook.com/onlettingo/videos/10157072617626056", "https://www.facebook.com/kristajeannettewilliamson/posts/3334778089868526"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Atlanta", "name": "Police shove and shoot protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "ga-atlanta-6"}, {"links": ["https://twitter.com/ftn_shark/status/1266854056506667009?s=19", "https://twitter.com/throneofmorac/status/1266870493858185217?s=09"], "state": "Georgia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", "city": "Lawrenceville", "name": "Man tased in back for speaking up after man on ground is punched in face by cop", "date": "2020-05-30", "date_text": "May 30th", "id": "ga-lawrenceville-1"}, {"links": ["https://twitter.com/thickliljawn/status/1267239498083110913"], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Fort Lauderdale", "name": "Police Shove a woman down to her knees", "date": "2020-05-31", "date_text": "May 31st", "id": "fl-fortlauderdale-1"}, {"links": ["https://www.miamiherald.com/news/local/community/broward/article243193481.html"], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Fort Lauderdale", "name": "Law enforcement shoot a woman in the head", "date": "2020-05-31", "date_text": "May 31st", "id": "fl-fortlauderdale-2"}, {"links": ["https://twitter.com/BillyCorben/status/1267644127178563588"], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Miami", "name": "Man tackled to ground after speaking to police", "date": "2020-05-31", "date_text": "May 31st", "id": "fl-miami-1"}, {"links": ["https://twitter.com/ewcfilms/status/1268003421786906627"], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Orlando", "name": "Police use excessive force during an arrest", "date": "2020-06-02", "date_text": "June 2nd", "id": "fl-orlando-1"}, {"links": ["https://twitter.com/greg_doucette/status/1269017349727928320", "https://www.google.com/maps/place/29+W+South+St,+Orlando,+FL+32801,+USA/@28.5384293,-81.3797504,20z/data="], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Orlando", "name": "Police fire on protesters outside city hall", "date": "", "date_text": "Date unknown", "id": "fl-orlando-2"}, {"links": ["https://twitter.com/walkin_da_talk/status/1268718193679499266", "https://twitter.com/jamiebullockk/status/1268658254806163460", "https://twitter.com/InesseC/status/1268912900565094401", "https://www.google.com/maps/@27.9563654,-82.4569108,3a,75y,255.48h,92.17t/data="], "state": "Florida", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", "city": "Tampa", "name": "One woman is pinned to the ground and another is pepper-sprayed", "date": "2020-06-04", "date_text": "June 4th", "id": "fl-tampa-1"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gwm2mf/police_using_selective_enforcement_on_protestors/", "https://twitter.com/Eggsalaaad/status/1268223118394392576"], "state": "North Dakota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/North Dakota.md", "city": "Fargo", "name": "Police using selective enforcement on black individuals", "date": "2020-06-03", "date_text": "June 3rd", "id": "nd-fargo-1"}, {"links": ["https://twitter.com/NeonMarionette/status/1266962885957292032?s=20"], "state": "Wisconsin", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Wisconsin.md", "city": "Madison", "name": "Officer pepper-sprays protestor walking backwards with arms raised", "date": "2020-05-31", "date_text": "May 31st", "id": "wi-madison-1"}, {"links": ["http://www.milwaukeeindependent.com/articles/milwaukee-common-council-calls-investigation-use-knee-police-restrain-protestor/", "https://old.reddit.com/r/gifs/comments/gxptyo/june_2_2020_milwaukee_police_punch_and_knee/", "https://giphy.com/gifs/protest-milwaukee-blm-IzjGA5w04kTJTeP7Dz/fullscreen", "https://www.google.ca/maps/place/N+6th+St+%26+W+Vliet+St,+Milwaukee,+WI+53205,+USA/@43.0483922,-87.9188126,3a,75y,1.17h,90t/data="], "state": "Wisconsin", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Wisconsin.md", "city": "Milwaukee", "name": "Police restrain man using knee on neck", "date": "2020-06-02", "date_text": "June 2nd", "id": "wi-milwaukee-1"}, {"links": ["https://youtu.be/XAa5xb6JitI?t=5982", "https://gfycat.com/distinctsecretgrasshopper-minneapolis-protest-police-acab"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police hit press in neck and head with wooden baton", "date": "2020-05-26", "date_text": "May 26th", "id": "mn-minneapolis-22"}, {"links": ["https://www.facebook.com/1462345700/posts/10220863688809651"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot flashbang grenades into crowd", "date": "2020-05-26", "date_text": "believed to be May 26th or 27th", "id": "mn-minneapolis-14"}, {"links": ["https://twitter.com/MichaelAdams317/status/1266945268567678976", "https://twitter.com/rsdaza/status/1267200011659554824", "https://twitter.com/MichaelAdams317/status/1267203751913422849", "https://www.vice.com/en_us/article/y3zd7g/i-told-riot-cops-im-a-journalist-they-forced-me-to-the-ground-and-pepper-sprayed-me-in-the-face"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police storm gas station, attacking reporters who show press badges", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-1"}, {"links": ["https://youtu.be/46qWpv-yFE8?t=268"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Continuation of gas station event; Awaijane family told to go inside gas station, they comply and seek shelter inside, police then shoot rubber bullets and tear gas inside the building", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-21"}, {"links": ["https://www.youtube.com/watch?v=O3qj4cfsd7g", "https://twitter.com/stribrooks/status/1266186985041022976"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police drive by spraying", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-3"}, {"links": ["https://www.youtube.com/watch?v=aNuzzVpDZTY"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "CNN Reporter arrested", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-4"}, {"links": ["https://www.youtube.com/watch?v=wmpic2NU1RM&feature=youtu.be"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "WCCO photojournalist arrested", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-5"}, {"links": ["https://mobile.twitter.com/chadloder/status/1266962631887224837"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "CNN crew shot at with rubber bullets and tear gas while live on air", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-15"}, {"links": ["https://twitter.com/greg_doucette/status/1267118696960528386"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot rubber bullets and teargas at an MSNBC reporter", "date": "2020-05-30", "date_text": "believed to be May 30th", "id": "mn-minneapolis-16"}, {"links": ["https://www.srf.ch/play/tv/news-clip/video/schweizer-journalisten-werden-mit-gummischrot-attackiert?id=67d44dd8-f16e-4db0-b690-799ab827956a&startTime=9", "https://www.srf.ch/news/international/pressefreiheit-unter-beschuss-schweizer-journalisten-in-den-usa-von-polizei-attackiert", "https://www.swissinfo.ch/eng/minneapolis-protests-_rubber-bullets-shot-at-swiss-journalists-by-us-police-/45808806"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Swiss journalists shot at with rubber bullets by police", "date": "2020-05-30", "date_text": "May 30th", "id": "mn-minneapolis-17"}, {"links": ["https://twitter.com/tkerssen/status/1266921821653385225"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot at a woman on her porch", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-2"}, {"links": ["https://mobile.twitter.com/mollyhf/status/1266911382613692422", "https://www.latimes.com/world-nation/story/2020-05-30/la-reporter-tear-gas-police"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "LA-Times employee recounts getting shot", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-6"}, {"links": ["https://twitter.com/JaredGoyette/status/1266961243476299778"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Reporter shares his experience", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-7"}, {"links": ["https://www.motherjones.com/anti-racism-police-protest/2020/06/videos-show-cops-slashing-car-tires-at-protests-in-minneapolis/", "https://youtu.be/sP7hM_sdpkQ?t=4209", "https://twitter.com/val_ebertz/status/1266975058230235137", "https://twitter.com/andrewkimmel/status/1266987126467461120?s=20", "https://twitter.com/andrewkimmel/status/1267012840197586946?s=20", "https://lawandcrime.com/george-floyd-death/strategically-deflated-authorities-admit-to-slashing-tires-on-cars-belonging-to-protesters-and-journalists-in-minneapolis/"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police slashes tires", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-8"}, {"links": ["https://mobile.twitter.com/chadloder/status/1266971884001693696", "https://twitter.com/MikeGeorgeCBS/status/1266916104951214080"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "CBS news crew shot with rubber bullets", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-9"}, {"links": ["https://twitter.com/atrupar/status/1266910910137995264"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police throw flashbangs at reporter", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-10"}, {"links": ["https://mobile.twitter.com/KillerMartinis/status/1266618525600399361?s=19"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police blind a reporter with rubber bullet", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-11"}, {"links": ["https://www.reuters.com/article/us-minneapolis-police-protest-update/reuters-cameraman-hit-by-rubber-bullets-as-police-disperse-protesters-idUSKBN237050"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot Reuters reporters with rubber bullets", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-12"}, {"links": ["https://www.youtube.com/watch?v=NN8ISwuiX68"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police shoot at, threaten to arrest reporter", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-13"}, {"links": ["https://twitter.com/keycodez/status/1267235529311113216/video/1"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Police stop SUV to driveby pepperspray protesters through window", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-18"}, {"links": ["https://mobile.twitter.com/chadloder/status/1266957030285127687"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Patient care assistant reports being shot with rubber bullets while treating injured protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-19"}, {"links": ["https://twitter.com/edouphoto/status/1267958349477249024", "https://www.facebook.com/356074941105769/posts/3020200918026478/"], "state": "Minnesota", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", "city": "Minneapolis", "name": "Journalists pepper sprayed and hit with flashbangs and batons", "date": "2020-05-31", "date_text": "May 31st", "id": "mn-minneapolis-20"}, {"links": ["https://twitter.com/AngelaMWilhelm/status/1268056986102444033", "https://twitter.com/AngelaMWilhelm/status/1267974081577717762", "https://twitter.com/daveth89/status/1267974555332685824", "https://i.redd.it/wofh339sqr251.png"], "state": "North Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/North Carolina.md", "city": "Asheville", "name": "Police surround approved medical station and destroy supplies", "date": "2020-06-02", "date_text": "June 2nd", "id": "nc-asheville-1"}, {"links": ["https://www.instagram.com/tv/CA9UOKAj7MC/"], "state": "North Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/North Carolina.md", "city": "Charlotte", "name": "Law enforcement close on protesters from both sides with pepper bullets, tear gas, and flashbangs", "date": "2020-06-02", "date_text": "June 2nd", "id": "nc-charlotte-1"}, {"links": ["https://www.instagram.com/p/CA51AJxH7S9", "https://www.newsobserver.com/news/local/article243202416.html", "https://www.google.ca/maps/place/Ruby+Deluxe/@35.7751916,-78.6399548,3a,75y,200h,110t/data="], "state": "North Carolina", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/North Carolina.md", "city": "Raleigh", "name": "Police shoot to intimidate owner of LGBTQ bar", "date": "2020-06-02", "date_text": "June 2nd", "id": "nc-raleigh-1"}, {"links": ["https://twitter.com/greg_doucette/status/1266745200656990208", "https://twitter.com/_isabel_a/status/1266580681251000321"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Fort Wayne", "name": "Police pepper spray protesters attempting to record them", "date": "2020-05-29", "date_text": "May 29th", "id": "in-fortwayne-1"}, {"links": ["https://twitter.com/blazedyukhei/status/1266533569029177346"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Fort Wayne", "name": "Police tear gas peaceful protesters", "date": "2020-05-30", "date_text": "May 30th", "id": "in-fortwayne-2"}, {"links": ["https://wpta21.com/2020/05/31/toddler-tear-gassed-photo-goes-viral/#.XtUVqwf8OnF.facebook"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Fort Wayne", "name": "Toddler teargassed by police", "date": "2020-05-30", "date_text": "May 30th", "id": "in-fortwayne-3"}, {"links": ["https://i.redd.it/4qzvp2gd54251.jpg", "https://twitter.com/notbalin/status/1266972999296704513", "https://mobile.twitter.com/chadloder/status/1267279165230743553/photo/2"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Fort Wayne", "name": "Protester hit in the face with a gas cannister", "date": "2020-05-31", "date_text": "May 31st", "id": "in-fortwayne-4"}, {"links": ["https://www.facebook.com/AlexandraIndy/videos/10219444419838711"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Indianapolis", "name": "Police confiscate medical supplies from medical station", "date": "2020-05-29", "date_text": "May 29th", "id": "in-indianapolis-1"}, {"links": ["https://www.washingtonpost.com/national/protests-police-brutality-video/2020/06/05/a9e66568-a768-11ea-b473-04905b1af82b_story.html", "https://www.reddit.com/r/PublicFreakout/comments/guffju/indianapolis_police_on_women_rights/", "https://twitter.com/greg_doucette/status/1268391718086422528"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Indianapolis", "name": "Police beat woman with batons and shoot pepper balls, shove another to the ground", "date": "2020-06-01", "date_text": "June 1st", "id": "in-indianapolis-2"}, {"links": ["https://www.facebook.com/ctchoula/videos/10163707272210302/", "https://scontent-ort2-2.xx.fbcdn.net/v/t1.0-9/101254362_755196441884833_7192544661301362688_n.jpg?_nc_cat=103&_nc_sid=110474&_nc_ohc=wjDZM1x0RLYAX9sKPft&_nc_ht=scontent-ort2-2.xx&oh=606a9dbf10d30a680c5dcb2c8ae8d7ce&oe=5EFD314B"], "state": "Indiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", "city": "Lafayette", "name": "Officer drops tear gas into peaceful protest without warning", "date": "2020-05-31", "date_text": "Possibly May 31st", "id": "in-lafayette-1"}, {"links": ["https://www.reddit.com/r/Eugene/comments/gurr9r/police_shoot_projectile_from_moving_vehicle_hit/", "https://streamable.com/9h2tk3"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Eugene", "name": "Officer shoots projectile from moving vehicle", "date": "2020-06-01", "date_text": "June 1st", "id": "or-eugene-1"}, {"links": ["https://twitter.com/IwriteOK/status/1266907719635632129", "https://twitter.com/MrOlmos/status/1266916861267996673"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Police violently break up peaceful protest", "date": "2020-05-30", "date_text": "May 30th", "id": "or-portland-1"}, {"links": ["https://www.youtube.com/watch?v=01oWE24O9Zw&feature=emb_title"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Officer pepper-sprays protestor", "date": "2020-05-30", "date_text": "May 30th", "id": "or-portland-2"}, {"links": ["https://twitter.com/AstuteAF/status/1268125169890938882"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Police appear to tear-gas a homeless camp", "date": "2020-06-02", "date_text": "June 2nd", "id": "or-portland-3"}, {"links": ["https://twitter.com/matcha_chai/status/1268043556913987584"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Police deploy shoot teargas/flashbang grenade into a crowd", "date": "2020-06-02", "date_text": "June 2nd", "id": "or-portland-4"}, {"links": ["https://twitter.com/MrAndyNgo/status/1268224547272003585"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Police launch teargas into a crowd", "date": "2020-06-02", "date_text": "June 2nd", "id": "or-portland-5"}, {"links": ["https://twitter.com/chadloder/status/1269526243138928642", "https://twitter.com/TVAyyyy/status/1269526590456643584", "https://twitter.com/DonovanFarley/status/1269701897377603584"], "state": "Oregon", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", "city": "Portland", "name": "Officer attacks photographer with baton and pepper sprays him", "date": "2020-06-06", "date_text": "June 6th", "id": "or-portland-6"}, {"links": ["https://twitter.com/RimeAndTreason/status/1267268090351489024"], "state": "Massachusetts", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", "city": "Boston", "name": "Police beat an innocent man crossing the street with batons.", "date": "2020-05-31", "date_text": "May 31st", "id": "ma-boston-1"}, {"links": ["https://www.youtube.com/watch?v=egvPF75vWOA"], "state": "Massachusetts", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", "city": "Boston", "name": "A cop takes someone's protest sign and destroys it.", "date": "", "date_text": "Unknown Date", "id": "ma-boston-2"}, {"links": ["https://twitter.com/sebishop99/status/1267877928391659521/photo/1"], "state": "Massachusetts", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", "city": "Worcester", "name": "Worcester police officers cover badge numbers during protest", "date": "2020-06-01", "date_text": "June 1st", "id": "ma-worcester-1"}, {"links": ["https://twitter.com/sebishop99/status/1267890659484143616", "https://twitter.com/sebishop99/status/1267905527390113798", "https://streamable.com/lqxq76", "https://twitter.com/sebishop99/status/1267911837808496646"], "state": "Massachusetts", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", "city": "Worcester", "name": "Riot police throw protestor to the ground", "date": "2020-06-01", "date_text": "June 1st", "id": "ma-worcester-2"}, {"links": ["https://twitter.com/sebishop99/status/1267913459938844673"], "state": "Massachusetts", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", "city": "Worcester", "name": "Riot police fire on protestors without provocation", "date": "2020-06-01", "date_text": "June 1st", "id": "ma-worcester-3"}, {"links": ["https://twitter.com/sebishop99/status/1267948306182922245", "https://twitter.com/sebishop99/status/1267950415443787777", "https://twitter.com/sebishop99/status/1267968189675253760"], "state": "Massachusetts", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", "city": "Worcester", "name": "Numerous eyewitness report being tackled by police officers", "date": "2020-06-01", "date_text": "June 1st", "id": "ma-worcester-4"}, {"links": ["https://twitter.com/kodyfishertv/status/1266901735198638082"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Cincinnati", "name": "Police disperse peaceful protest with tear gas, flash bangs and pepper bullets", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-cincinnati-1"}, {"links": ["https://touch.facebook.com/story.php?story_fbid=10157718199384132&id=697759131&ref=bookmarks"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Cincinnati", "name": "First hand account of police violently dispersing crowds", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-cincinnati-2"}, {"links": ["https://twitter.com/nswartsell/status/1267612155840528385"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Cincinnati", "name": "Police arrest reporter and force him to ground, grab another reporter", "date": "2020-06-01", "date_text": "June 1st", "id": "oh-cincinnati-3"}, {"links": ["https://twitter.com/greg_doucette/status/1267114065819770880"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Cleveland", "name": "Officer swings baton at protesters, beats one who is trying to keep crowd back", "date": "2020-05-30", "date_text": "believed to be May 30th", "id": "oh-cleveland-1"}, {"links": ["https://twitter.com/rachelscotton/status/1266840734906318848"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Cleveland", "name": "Police fire tear gas at peaceful protest", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-cleveland-2"}, {"links": ["https://www.facebook.com/story.php?story_fbid=1137997739900780&id=100010716946743"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Cop hits a protestor in the face, escalates to whole crowd being pepper sprayed", "date": "2020-05-29", "date_text": "May 29th", "id": "oh-columbus-1"}, {"links": ["https://www.cnn.com/2020/05/30/politics/joyce-beatty-ohio-pepper-sprayed-columbus-protest/index.html", "https://twitter.com/politico/status/1266866982919516160", "https://twitter.com/TimWCBD/status/1266787064735043591", "https://twitter.com/KRobPhoto/status/1266796191469252610"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Congresswoman Joyce Beatty reportedly sprayed with \"mace or pepper spray\"", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-columbus-2"}, {"links": ["https://twitter.com/rottenstrwbry/status/1266805467990446081"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Peaceful protester sprayed in the face with mace", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-columbus-3"}, {"links": ["https://twitter.com/greg_doucette/status/1266878189537824772"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepperspray protesters for chanting", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-columbus-4"}, {"links": ["https://pressfreedomtracker.us/all-incidents/student-journalist-chased-pepper-sprayed-during-protests-columbus/", "https://twitter.com/julialwashere/status/1266730657436315649"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Officer chases reporter and pepper sprays her", "date": "2020-05-30", "date_text": "May 30th", "id": "oh-columbus-15"}, {"links": ["https://twitter.com/Katy38105157/status/1266816739444166656", "https://twitter.com/SAColumbus/status/1266867613872857094"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepper-spray a medic", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-5"}, {"links": ["https://twitter.com/lalaitskelcey2/status/1266821476122058752", "https://twitter.com/MarioLeUgly/status/1266933807929798656"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police mace an innocent woman", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-6"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gtq7i4/columbus_police_officer_trying_to_use_his_car_to/"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police intimidating campus protesters by driving car towards them", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-7"}, {"links": ["https://twitter.com/DabinDhillo/status/1266892095702392832", "https://twitter.com/taesvangogh/status/1266907922308558848"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepper spray two kneeling protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-8"}, {"links": ["https://i.redd.it/4ix8f3j6dy151.jpg", "https://old.reddit.com/r/Columbus/comments/gtk192/photographer_being_pepper_sprayed_by_police/", "https://www.instagram.com/p/CA03DsTByLn/"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepper spray African-American photographer", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-9"}, {"links": ["https://twitter.com/greg_doucette/status/1267102580070592512"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police pepperspray sitting protesters", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-10"}, {"links": ["https://mobile.twitter.com/chadloder/status/1267113315613806592", "https://twitter.com/greg_doucette/status/1267122343454953472"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Woman holding a sign is shot with rubber bullets", "date": "2020-05-31", "date_text": "May 31st", "id": "oh-columbus-11"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gusqeg/video_from_inside_the_concrete_courtyard_peaceful/?utm_source=share&utm_medium=ios_app&utm_name=iossmf", "https://i.imgur.com/mECPaWe.jpg"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Protestors kept in a courtyard with no bathroom breaks, water, or food, for nine hours", "date": "2020-05-31", "date_text": "May 31st-June 1st", "id": "oh-columbus-12"}, {"links": ["https://www.thelantern.com/2020/06/columbus-mayor-police-chief-address-protest-policing-pepper-spray-of-lantern-journalists/", "https://twitter.com/TheLantern/status/1267644471317090305", "https://twitter.com/maevewalsh27/status/1267646128289447939"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Police push and pepper spray reporters from The Lantern newspaper", "date": "2020-06-01", "date_text": "June 1st", "id": "oh-columbus-13"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gvte8e/cop_refuses_to_give_diabetic_woman_her_insulin/", "https://www.tiktok.com/@zestaz/video/6833912697436867845", "https://www.tiktok.com/@zestaz/video/6833913925231185158"], "state": "Ohio", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", "city": "Columbus", "name": "Officer refuses to give diabetic arrestee her insulin back", "date": "2020-06-02", "date_text": "June 2nd", "id": "oh-columbus-14"}, {"links": ["https://gfycat.com/tautimaginativedore"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police assault protesters", "date": "2020-05-30", "date_text": "(believed to be) May 30th", "id": "tx-austin-2"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guwc4y/austin_tx_nonviolent_protestor_shot_in_the_head/", "https://www.instagram.com/p/CA6TCIGnuWm/", "https://www.youtube.com/watch?v=-BGyTi-KdKc", "https://streamable.com/o1uqgy", "https://cbsaustin.com/news/local/austin-teen-hospitalized-with-head-injury-after-police-shoot-him-with-bean-bags-at-protest"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police shoot non-violent protestor in the head", "date": "2020-05-30", "date_text": "May 30th", "id": "tx-austin-3"}, {"links": ["https://twitter.com/highsettler/status/1266876480929349633", "https://imgur.com/gallery/VKuIIvu", "https://gfycat.com/weirdthankfulgnatcatcher"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police use tear gas & rubber bullets on protesters", "date": "2020-05-30", "date_text": "May 30th", "id": "tx-austin-4"}, {"links": ["https://twitter.com/ironfront7/status/1267133400156196870"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police open fire on crowd with rubber bullets", "date": "2020-05-30", "date_text": "May 30th", "id": "tx-austin-5"}, {"links": ["https://www.reddit.com/r/Bad_Cop_No_Donut/comments/gwd37n/a_black_20yearold_student_justin_howell_is_in/", "https://www.texastribune.org/2020/06/01/austin-police-george-floyd-mike-ramos/", "https://www.kvue.com/article/news/local/austin-protester-police-struck-by-less-lethal-bean-bag-round/269-430f90a2-b6c1-4ee3-9d9c-639faf132100", "https://www.cnn.com/2020/06/07/us/austin-texas-police-bean-bag-20-year-old-injured/index.html"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police critically injure 20 year old black protester during protests against police violence", "date": "2020-05-31", "date_text": "May 31st", "id": "tx-austin-1"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gwfu8e/apd_gets_water_splashed_on_them_and_immediately/", "https://tuckbot.tv/#/watch/gwfu8e", "https://peertube.live/videos/watch/320ea302-9806-44c0-843e-49d8486c423f"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police open fire on crowd after a protester throws water on them", "date": "2020-05-31", "date_text": "May 31st", "id": "tx-austin-6"}, {"links": ["https://old.reddit.com/r/Bad_Cop_No_Donut/comments/guhgfq/please_let_others_see_this_this_guy_did_not/", "https://twitter.com/Grits4Breakfast/status/1267128210455588865"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police spray a man in the face while he stands still ~3 feet away from them.", "date": "2020-05-31", "date_text": "May 31st", "id": "tx-austin-7"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gvjjwg/volunteer_medics_advised_by_police_to_bring_a/", "https://www.reddit.com/r/PublicFreakout/comments/gwbbjs/protestor_is_shot_in_head_with_rubber_bullet/", "http://www.thebatt.com/opinion/opinion-his-name-is-justin-howell/article_93a79c44-a5b6-11ea-aa54-ebc0da33cc35.html?fbclid=IwAR11FqXr9dRCKo-ohfeBoO9FdYFRG2uon0nqAkxKO5gZuL_-4EzgukAGcBs"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Austin", "name": "Police fire upon protesters seeking medical help", "date": "2020-06-02", "date_text": "June 2nd", "id": "tx-austin-8"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gw2dpw/cop_in_baytown_tx_pulls_over_black_man_white_man/", "https://www.facebook.com/isaiah.benavides.94/videos/2811815772219886/"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Baytown", "name": "Police officer tackles and knees man on the ground", "date": "2020-06-02", "date_text": "June 2nd", "id": "tx-baytown-1"}, {"links": ["https://twitter.com/KevinRKrause/status/1266898396339675137", "https://i.redd.it/ns0uj557x0251.jpg", "https://twitter.com/greg_doucette/status/1267109272342736896"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Dallas", "name": "Police shoot unarmed woman in the face with a rubber bullet", "date": "2020-05-30", "date_text": "May 30th", "id": "tx-dallas-1"}, {"links": ["https://twitter.com/HERCGTH/status/1266870616570900480", "https://www.wfaa.com/article/news/local/dallas-county/dallas-police-investigating-possible-use-of-force-incidents-saturday/287-1d3851d2-656c-4d40-8eac-7deac44ddf2d"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Dallas", "name": "Man shot in the eye", "date": "2020-05-30", "date_text": "May 30th", "id": "tx-dallas-4"}, {"links": ["https://twitter.com/xtranai/status/1266898175568338945"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Dallas", "name": "Police use flashbangs and tear gas on protestors", "date": "2020-05-31", "date_text": "May 31st", "id": "tx-dallas-2"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gx9a5n/these_protests_took_place_on_june_2nd_in_dallas/", "https://www.google.com/maps/place/Margaret+Hunt+Hill+Bridge,+Dallas,+TX,+USA/@32.781075,-96.8186896,15z/data="], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Dallas", "name": "Police maneuver protestors onto bridge and fire tear gas and rubber bullets", "date": "2020-06-02", "date_text": "June 2nd", "id": "tx-dallas-3"}, {"links": ["https://twitter.com/vikthewild/status/1266538354939756544", "https://abc13.com/hpd-uns-over-girl-police-on-horse-tramples-protester-george-floyd/6223240/"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Houston", "name": "Police trample protester with horse", "date": "2020-05-29", "date_text": "May 29th", "id": "tx-houston-1"}, {"links": ["https://twitter.com/AbkTrauma/status/1266511972524269569"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Houston", "name": "Officers shove a woman to the pavement", "date": "2020-05-29", "date_text": "May 29th", "id": "tx-houston-2"}, {"links": ["https://twitter.com/DomSkyeRN/status/1270185401060294656"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "Houston", "name": "Officer pushs protestor that is filming", "date": "", "date_text": "Date Unknown", "id": "tx-houston-3"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/gu3s6j/police_shoots_protestor_for_no_reason/", "https://tuckbot.tv/#/watch/gu3s6j"], "state": "Texas", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", "city": "San Antonio", "name": "Police shoot man filming them with what were allegedly rubber bullets", "date": "2020-05-31", "date_text": "(believed to be) May 31st", "id": "tx-sanantonio-2"}, {"links": ["https://twitter.com/XruthxNthr/status/1266903223220097024"], "state": "Nebraska", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nebraska.md", "city": "Omaha", "name": "Police Mace, shoot pepper bullets at protesters sitting on the ground", "date": "2020-05-31", "date_text": "May 31st", "id": "ne-omaha-1"}, {"links": ["https://twitter.com/reecereports/status/1267629669093978117"], "state": "Nebraska", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Nebraska.md", "city": "Omaha", "name": "Peaceful protestors arrested for breaking curfew", "date": "2020-06-01", "date_text": "June 1", "id": "ne-omaha-2"}, {"links": ["https://twitter.com/AleemMaqbool/status/1267319521486004225?s=20", "https://www.bbc.co.uk/news/av/world-us-canada-52884888/george-floyd-protests-police-charge-at-bbc-cameraman-near-white-house"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Riot Police rams shield into BBC cameraman", "date": "2020-05-31", "date_text": "May 31st", "id": "dc-dc-1"}, {"links": ["https://twitter.com/i/status/1267298316141899780", "https://twitter.com/i/status/1267283580474085378"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Police tear gas protesters outside of Lafayette Square", "date": "2020-05-31", "date_text": "May 31st", "id": "dc-dc-11"}, {"links": ["https://7news.com.au/sunrise/on-the-show/scary-moment-as-sunrise-reporter-caught-up-in-us-violence-c-1073136", "https://www.abc.net.au/news/2020-06-02/channel-7-journalists-assaulted-police-george-floyd-protesters/12312056", "https://twitter.com/ASB_Breaking/status/1267596043870486528", "https://twitter.com/i/status/1267597024096137217", "https://twitter.com/i/status/1267606685767667712", "https://v.redd.it/qf9vf0hdrd251", "https://peertube.live/videos/watch/1713b881-a750-45a0-9c6c-f066ebcac484", "https://www.reddit.com/r/2020PoliceBrutality/comments/gvqjjv/nsfl_clearer_footage_of_guy_hit_by_shield_blood/"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Australian news crew and protestors attacked by police", "date": "2020-06-01", "date_text": "June 1st", "id": "dc-dc-2"}, {"links": ["https://www.nytimes.com/2020/06/02/us/politics/trump-walk-lafayette-square.html", "https://www.cnn.com/2020/06/02/politics/trump-white-house-protest-police-church-photo-op/index.html", "https://www.wusa9.com/article/news/local/dc/lafayette-square-washington-dc-protests-st-johns-church/65-f76d9753-8d99-42df-b02d-99d11a427595", "https://www.reddit.com/r/2020PoliceBrutality/comments/gvpqoz/nsfl_hit_by_riot_shield_blood_gushes_out_of_guys/", "https://www.reddit.com/r/2020PoliceBrutality/comments/gvpgpz/found_both_videos_of_the_dc_event_i_know_people/", "https://twitter.com/nytimes/status/1267638330654625794"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Protestors are quickly and violently pushed out of Lafayette Square", "date": "2020-06-01", "date_text": "June 1", "id": "dc-dc-3"}, {"links": ["https://mobile.twitter.com/chadloder/status/1267377374066167808"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Officer fires tear gas cannister at protestor's head", "date": "", "date_text": "", "id": "dc-dc-4"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guvwgo/trump_gives_a_speech_about_protecting_peaceful/?utm_source=share&utm_medium=ios_app&utm_name=iossmf"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Police violence outside the White House", "date": "2020-06-01", "date_text": "June 1st", "id": "dc-dc-5"}, {"links": ["https://twitter.com/suckmyunicornD/status/1267767217392934917", "https://dcist.com/story/20/06/02/dupont-dc-home-protest-rahul-dubey/"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Man who sheltered protestors discusses law enforcement officers shooting tear gas into his house", "date": "2020-06-01", "date_text": "June 1st", "id": "dc-dc-6"}, {"links": ["https://twitter.com/WestofHereFox/status/1267615709791731713"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Police charge peaceful crowd, beat them with shields", "date": "", "date_text": "", "id": "dc-dc-7"}, {"links": ["https://twitter.com/i/status/1269859559859871744"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Police fire into crowd hitting one protester", "date": "2020-06-01", "date_text": "June 1st", "id": "dc-dc-8"}, {"links": ["https://twitter.com/MarkIronsMedia/status/1268046417865715713", "https://twitter.com/MarkIronsMedia/status/1268062053182443522", "https://twitter.com/gifdsports/status/1268041853196275712"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Law enforcement officers fire rubber bullets into crowd, pepper-spray kneeling protestor and CNN crew", "date": "2020-06-03", "date_text": "June 3", "id": "dc-dc-9"}, {"links": ["https://twitter.com/greg_doucette/status/1268297598856765441", "https://twitter.com/greg_doucette/status/1268297598856765441"], "state": "Washington DC", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", "city": "DC", "name": "Law enforcement officers throw stinger grenades at peaceful protestors", "date": "2020-06-03", "date_text": "June 3", "id": "dc-dc-10"}, {"links": ["https://twitter.com/ETfonehome97/status/1267657232411435008"], "state": "Alabama", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", "city": "Huntsville", "name": "Protester falls and is stepped on", "date": "2020-06-01", "date_text": "June 1st", "id": "al-huntsville-1"}, {"links": ["https://twitter.com/bitchthot420/status/1268350308398268416"], "state": "Alabama", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", "city": "Huntsville", "name": "Police officer pepper sprays protestors for no reason", "date": "2020-06-03", "date_text": "June 3rd", "id": "al-huntsville-2"}, {"links": ["https://twitter.com/greg_doucette/status/1268397070563414016"], "state": "Alabama", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", "city": "Huntsville", "name": "Police tear gas reporters", "date": "2020-06-03", "date_text": "June 3rd", "id": "al-huntsville-3"}, {"links": ["https://www.alreporter.com/2020/06/03/huntsville-police-deploy-tear-gas-rubber-bullets-on-protesters/"], "state": "Alabama", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", "city": "Huntsville", "name": "Police preemptively tear gas peaceful protestors", "date": "2020-06-03", "date_text": "June 3rd", "id": "al-huntsville-4"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gyo2fh/huntsville_al_woman_documents_herself_struggling/"], "state": "Alabama", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", "city": "Huntsville", "name": "Police fire rubber bullets on dispersing crowd", "date": "2020-06-05", "date_text": "Believed to be June 5th", "id": "al-huntsville-5"}, {"links": ["https://twitter.com/alyssa_taylor45/status/1266895002904539137?s=20"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police pull down and assault a protestor", "date": "2020-05-30", "date_text": "May 30th", "id": "il-chicago-1"}, {"links": ["https://twitter.com/LUVRGRLLANI/status/1266866301001179136"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Protester shot in head with rubber bullet", "date": "2020-05-30", "date_text": "May 30th", "id": "il-chicago-2"}, {"links": ["https://twitter.com/JCB_Journo/status/1266897672545480706"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police pepperspray reporter for recording", "date": "2020-05-30", "date_text": "May 30th", "id": "il-chicago-5"}, {"links": ["https://old.reddit.com/r/PublicFreakout/comments/gtmbmh/cops_remove_badges_minutes_before_assault/"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police remove badges", "date": "2020-05-30", "date_text": "(Believed to be) May 30th", "id": "il-chicago-11"}, {"links": ["https://twitter.com/johncusack/status/1266938983575101441"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police harass and assault John Cusack", "date": "2020-05-31", "date_text": "May 31st", "id": "il-chicago-3"}, {"links": ["https://twitter.com/cruzzzyc/status/1267185423333199874", "https://twitter.com/AdrienneWrites/status/1267534983054254081", "https://blockclubchicago.org/2020/06/03/black-women-pulled-from-car-kneeled-on-by-chicago-police-officers-outside-northwest-side-mall-i-was-scared-for-my-life/", "https://chicago.cbslocal.com/2020/06/03/police-drag-women-out-of-car-outside-brickyard-mall-woman-says-officer-put-knee-on-neck/"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police pull black women out of the car and throw them to the ground", "date": "2020-05-31", "date_text": "May 31st", "id": "il-chicago-4"}, {"links": ["https://news.wttw.com/2020/06/05/police-board-president-officers-struck-me-5-times-their-batons-during-protest"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Cops hit Chicago Police Board President", "date": "2020-05-31", "date_text": "May 31st", "id": "il-chicago-6"}, {"links": ["https://twitter.com/KyleWilkins/status/1267268393809387520/photo/1"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Officer covers badge", "date": "2020-05-31", "date_text": "May 31st", "id": "il-chicago-10"}, {"links": ["https://twitter.com/CHICAGOCREATUR1/status/1268607315902697478", "https://twitter.com/helllucinate/status/1267237866935136258", "https://twitter.com/trashrascal/status/1268669040312147969"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Officers are missing badges", "date": "2020-05-31", "date_text": "May 31st", "id": "il-chicago-13"}, {"links": ["https://www.youtube.com/watch?time_continue=44&v=_urY-W8otNA", "https://chicago.suntimes.com/crime/2020/6/3/21279501/police-video-cpd-officer-punch-protester-uptown-investigation-copa"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Video showing CPD officer punching protester in Uptown under investigation", "date": "2020-06-01", "date_text": "June 1st", "id": "il-chicago-7"}, {"links": ["https://twitter.com/BLMChi/status/1267486699321544704"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "CPD chase down protester on TV", "date": "2020-06-01", "date_text": "June 1st", "id": "il-chicago-8"}, {"links": ["https://twitter.com/ChrisDitton/status/1267675836892708864"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police grab protester and throw into brick wall", "date": "2020-06-02", "date_text": "June 2nd", "id": "il-chicago-12"}, {"links": ["https://twitter.com/TomSchuba/status/1268312957752160257"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Chicago", "name": "Police hit several protesters with batons", "date": "2020-06-03", "date_text": "(Believed to be) June 3rd", "id": "il-chicago-9"}, {"links": ["https://www.youtube.com/watch?v=rllO2sdj1Ek", "https://twitter.com/OrozcoJustina/status/1268262843801010179", "https://www.chicagotribune.com/news/breaking/ct-joliet-mayor-video-fallout-20200606-zeidd3u5xbadxfoedmfkp22akm-story.html"], "state": "Illinois", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", "city": "Joliet", "name": "Officers grabs someone by the neck then more cops pile on", "date": "2020-05-31", "date_text": "May 31st", "id": "il-joliet-1"}, {"links": ["https://www.facebook.com/Shawn.R.Russ/videos/10221345617964005/", "https://www.kktv.com/content/news/Colorado-Springs-police-issue-statement-following-use-of-force-arrest-during-protest-570969681.html"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Colorado Springs", "name": "Multiple cops pin man to ground while repeatedly punching him", "date": "2020-06-01", "date_text": "June 1st", "id": "co-coloradosprings-1"}, {"links": ["https://www.denverpost.com/2020/05/29/denver-post-photographer-pepper-balls-george-floyd-protest/"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Reporter shot with multiple pepper balls", "date": "2020-05-28", "date_text": "May 28th", "id": "co-denver-1"}, {"links": ["https://twitter.com/greg_doucette/status/1266758227930333188", "https://twitter.com/Dizzle14Double/status/1266615473816260609", "https://twitter.com/SaltMagazine_/status/1266634027257098240"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police pepperspray people trying to record", "date": "2020-05-29", "date_text": "May 29th", "id": "co-denver-2"}, {"links": ["https://twitter.com/AdiGTV/status/1266554320717099008"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Denver law enforcement shoot at reporters", "date": "2020-05-29", "date_text": "May 29th", "id": "co-denver-3"}, {"links": ["https://twitter.com/DoughertyKMGH/status/1266560264918491138/video/1"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Denver SWAT shoot at woman trying to stop armored car", "date": "2020-05-29", "date_text": "May 29th", "id": "co-denver-4"}, {"links": ["https://www.reddit.com/r/Denver/comments/gslcxb/the_moment_the_cops_tear_gassed_the_protesters_at/"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police discharge tear gas into group of protesters", "date": "2020-05-29", "date_text": "May 29th", "id": "co-denver-13"}, {"links": ["https://twitter.com/tessrmalle/status/1266945413258653696", "https://www.reddit.com/r/2020PoliceBrutality/comments/gunfut/denver_officer_pushed_a_photographer_into_a_fire/", "https://www.youtube.com/watch?v=zhIWohJsRyM&feature=youtu.be&t=4225"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police throw reporter into fire", "date": "2020-05-30", "date_text": "May 30th", "id": "co-denver-5"}, {"links": ["https://twitter.com/moneyroe99/status/1266956171409346566"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police tear gas and shoot protestors", "date": "2020-05-30", "date_text": "May 30th", "id": "co-denver-6"}, {"links": ["https://youtu.be/xNLZ7exVxq4?t=110"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Denver law enforcement shoot at reporter standing on the sidewalk", "date": "2020-05-30", "date_text": "May 30th", "id": "co-denver-7"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gumff6/denver_police_fire_pepper_balls_at_a_car_with_a/"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police fire pepper balls at car with pregnant woman", "date": "2020-05-31", "date_text": "May 31st", "id": "co-denver-8"}, {"links": ["https://twitter.com/heyydnae/status/1267139396278661121?s=21"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police officer fires at protestor while driving away", "date": "2020-05-31", "date_text": "May 31st", "id": "co-denver-9"}, {"links": ["https://www.reddit.com/r/2020PoliceBrutality/comments/gvhisl/police_rip_sign_out_of_peaceful_protesters_hands/", "https://www.tiktok.com/@yazzdazzz/video/6832896487207243014"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police pepper sprays peaceful protestor and fires tear gas on crowd", "date": "2020-05-31", "date_text": "Believed to be May 31st or June 1st", "id": "co-denver-10"}, {"links": ["https://www.reddit.com/r/Denver/comments/gvhqs2/elisabeth_epps_use_of_force_committee_member_for/"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police shoot protester from behind with tear gas canister", "date": "2020-06-02", "date_text": "June 2nd", "id": "co-denver-11"}, {"links": ["https://www.reddit.com/r/Denver/comments/gwdg85/denver_swat_unit_tackles_group_of_peaceful/"], "state": "Colorado", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", "city": "Denver", "name": "Police tackle group of peaceful protesters", "date": "2020-06-04", "date_text": "June 4th", "id": "co-denver-12"}, {"links": ["https://ktla.com/news/nationworld/a-virginia-police-officer-faces-charges-for-use-of-stun-gun-on-a-black-man/", "https://forthuntherald.com/mount-vernon-police-officer-who-forcefully-apprehended-a-black-man-charged-with-assault-battery/", "https://www.youtube.com/watch?v=MjFEDlTCKGE", "https://www.washingtonpost.com/local/public-safety/fairfax-county-police-officer-charged-after-using-stun-gun-on-black-man-without-provocation-police-say/2020/06/07/4e7b4a90-a858-11ea-b619-3f9133bbb482_story.html"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Fairfax", "name": "Officer repeatedly uses stun gun on suspect who said he couldn't breathe", "date": "2020-06-05", "date_text": "June 5th", "id": "va-fairfax-1"}, {"links": ["https://twitter.com/tristanshields/status/1266994214878932993"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Manassas", "name": "Officers pepper-spray Virginia state delegate peacefully protesting", "date": "", "date_text": "", "id": "va-manassas-1"}, {"links": ["https://www.reddit.com/r/rva/comments/gtwdzi/someone_got_pepper_sprayed_from_his_second_floor/", "https://twitter.com/ADeliciousBear/status/1268048506247405568", "https://m.facebook.com/story.php?story_fbid=1123349158037544&id=100010874104187"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Richmond", "name": "Officer sprays a man watching from his balcony", "date": "2020-05-31", "date_text": "May 31st", "id": "va-richmond-1"}, {"links": ["https://twitter.com/i/status/1267650345947271176", "https://twitter.com/i/status/1267613150112858116", "https://twitter.com/i/status/1267601158534815745", "https://twitter.com/LVozzella/status/1267603037532704769", "https://twitter.com/myVPM/status/1267605983641075712", "https://www.youtube.com/watch?v=LG_HMghyQZc"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Richmond", "name": "Tear gas fired at peaceful protest", "date": "2020-06-01", "date_text": "June 1st", "id": "va-richmond-2"}, {"links": ["https://www.reddit.com/r/PublicFreakout/comments/guzgf9/police_officer_in_richmond_va_spits_on_and_near_a/"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Richmond", "name": "Officer spits on detained protestor", "date": "2020-06-01", "date_text": "June 1st", "id": "va-richmond-3"}, {"links": ["https://twitter.com/BeQueerDoCrime/status/1268648919623442432"], "state": "Virginia", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", "city": "Richmond", "name": "Law enforcement officer fires tear gas at vehicle only to discover it's a police vehicle", "date": "2020-06-04", "date_text": "June 4th", "id": "va-richmond-4"}, {"links": ["https://twitter.com/misaacstein/status/1268381797081022464", "https://twitter.com/ckm_news/status/1268382403367763970", "https://twitter.com/brynstole/status/1268381340073971713", "https://twitter.com/xxnthe/status/1268427759870775298"], "state": "Louisiana", "edit_at": "https://github.com/2020PB/police-brutality/blob/master/reports/Louisiana.md", "city": "New Orleans", "name": "Police throw tear-gas at protestors on a bridge.", "date": "2020-06-03", "date_text": "June 3rd", "id": "la-neworleans-1"}]} \ No newline at end of file diff --git a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/AppDatabase.kt b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/AppDatabase.kt index a3a5b54..5786cc1 100644 --- a/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/AppDatabase.kt +++ b/android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/AppDatabase.kt @@ -15,7 +15,7 @@ import com.blacklivesmatter.policebrutality.worker.SeedDatabaseWorker /** * The Room database for this app */ -@Database(entities = [Incident::class], version = 2, exportSchema = true) +@Database(entities = [Incident::class], version = 3, exportSchema = true) @TypeConverters(Converters::class) abstract class AppDatabase : RoomDatabase() { abstract fun incidentDao(): IncidentDao diff --git a/resources/api-data-snapshot/all-locations-2020.06.09-05pm.json b/resources/api-data-snapshot/all-locations-2020.06.09-05pm.json new file mode 100644 index 0000000..a55b68c --- /dev/null +++ b/resources/api-data-snapshot/all-locations-2020.06.09-05pm.json @@ -0,0 +1,3846 @@ +{ + "edit_at":"https://github.com/2020PB/police-brutality", + "help":"ask @ubershmekel on twitter", + "updated_at":"2020-06-09T21:23:01.500161+00:00", + "data":[ + { + "links":[ + "https://twitter.com/courtenay_roche/status/1267653137969623040", + "https://twitter.com/yagirlbrookie09/status/1267647898365427714", + "https://www.4029tv.com/article/bentonville-police-deploy-tear-gas-on-protesters/32736629#" + ], + "state":"Arkansas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Arkansas.md", + "city":"Bentonville", + "name":"Law enforcement gas a crowd chanting \u201cwe want peace\u201d right after exiting the building.", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ar-bentonville-1" + }, + { + "links":[ + "https://twitter.com/KATVShelby/status/1267554421019475972?s=20", + "https://twitter.com/KATVNews/status/1267509911954440194" + ], + "state":"Arkansas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Arkansas.md", + "city":"Little Rock", + "name":"Peaceful protestors kneeling are shot with an explosive projectile.", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ar-littlerock-1" + }, + { + "links":[ + "https://twitter.com/bubbaprog/status/1266908354821206016" + ], + "state":"Utah", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", + "city":"Salt Lake City", + "name":"Police shove an old man with a cane to the ground", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ut-saltlakecity-1" + }, + { + "links":[ + "https://www.reddit.com/r/nextfuckinglevel/comments/gtv4co/downtown_salt_lake_city_may_30th_2020_unarmed/" + ], + "state":"Utah", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", + "city":"Salt Lake City", + "name":"Police shoot man on the ground in the spine with a beanbag point-blank", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ut-saltlakecity-2" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1268333029526843392", + "https://www.instagram.com/p/CA148-0B14t6mQZqJZYzwq25KdoPzZ5CJmV3oQ0/" + ], + "state":"Utah", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", + "city":"Salt Lake City", + "name":"Police shoot tear gas canister at man from close range, striking him in the chest", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ut-saltlakecity-4" + }, + { + "links":[ + "https://v.redd.it/fl4y919v1q251" + ], + "state":"Utah", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Utah.md", + "city":"Salt Lake City", + "name":"Police push and tackle man that is being vocal", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ut-saltlakecity-3" + }, + { + "links":[ + "https://twitter.com/CorinneAllen20/status/1268000716884283393", + "https://twitter.com/CliffBraun/status/1268038070667849728" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Clayton", + "name":"Law enforcement gas teenagers at a park", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"ca-clayton-1" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gvdl01/they_secluded_him_behind_a_wall_and_looked_around/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Compton", + "name":"Police beat person on the ground", + "date":"2020-06-01", + "date_text":"(believed to be) June 1st", + "id":"ca-compton-1" + }, + { + "links":[ + "https://old.reddit.com/r/orangecounty/comments/gvn42k/oc_sheriff_deputy_forgoing_his_name_badge_to_wear/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Costa Mesa", + "name":"Law enforcement concealing badge", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"ca-costa-mesa-1" + }, + { + "links":[ + "https://twitter.com/AdoreDelano/status/1267688320735166465" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Hollywood", + "name":"Law enforcement arrest people walking, you can hear on the radio \u201cYou should not be driving past anybody, stop and take somebody into custody\u201d.", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ca-hollywood-1" + }, + { + "links":[ + "https://twitter.com/mamitbh/status/1267030342243778561" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"La Mesa", + "name":"Law enforcement shoot and throw tear gas at protesters", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ca-lamesa-2" + }, + { + "links":[ + "https://www.facebook.com/100010947670361/videos/1115087385532840", + "https://mobile.twitter.com/MarajYikes/status/1267030131563827200", + "https://mobile.twitter.com/chadloder/status/1267290221562871809/photo/1" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"La Mesa", + "name":"Police shoot woman in the face", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-lamesa-1" + }, + { + "links":[ + "https://laist.com/2020/05/31/reporters_injured_protests_police.php", + "https://twitter.com/AGuzmanLopez/status/1267269781805137920" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Long Beach", + "name":"Reporter shot in neck by rubber bullet", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-longbeach-1" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gxjk67/reposted_wo_officer_name_footage_of_lapd_at_last/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"LAPD officer beats multiple protesters that are filming them during a protest in Beverley Hills", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ca-losangeles-2" + }, + { + "links":[ + "https://twitter.com/larryprincxpark/status/1266883515431505920", + "https://twitter.com/kendrick38/status/1266997131430133761" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Los Angeles law enforcement beat protesters with batons", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ca-losangeles-3" + }, + { + "links":[ + "https://twitter.com/GMA/status/1266934049098121216" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"ABC7 reporters are hit by tear gas", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ca-losangeles-4" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gxjk67/reposted_wo_officer_name_footage_of_lapd_at_last/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police beat protesters with batons", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ca-losangeles-5" + }, + { + "links":[ + "https://twitter.com/MatthewSantoro/status/1266916709304201216" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police fire rubber/pepper bullets at innocent protestors", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-losangeles-6" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gturig/cop_has_his_knee_on_a_womans_neck_even_though/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police officer puts his knee on a protesters neck, is pulled off", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-losangeles-7" + }, + { + "links":[ + "https://twitter.com/SUNDAYLOVERBOY/status/1266890947888996352" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police shoot rubber bullets at protesters", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-losangeles-8" + }, + { + "links":[ + "https://twitter.com/LowkeySinistra/status/1267109420955086848", + "https://twitter.com/LowkeySinistra/status/1267871561714790401", + "https://www.foxnews.com/media/marine-corps-veteran-shot-with-rubber-bullets-by-police-at-protest-i-had-my-hands-up" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Man shot in the head with deterrent rounds, is sent to hospital", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-losangeles-9" + }, + { + "links":[ + "https://twitter.com/MattMcGorry/status/1267217360894562306", + "https://abc7.com/6231194/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Los Angeles law enforcement beat protesters for no apparent reason.", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-losangeles-10" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1267095100166987778", + "https://twitter.com/sleepydayhana/status/1266930544811671552" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police tackle and arrest protester, indiscriminately beat others with batons and shoot them with less lethals", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-losangeles-11" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1267277826354556928", + "https://twitter.com/SophiaLeeHyun/status/1267216604388978689", + "https://twitter.com/chadloder/status/1267314138428014594", + "https://v.redd.it/9aiytt50g6251/DASH_1080#mp4", + "https://old.reddit.com/r/PublicFreakout/comments/gu8mqp/police_drives_into_protestors_in_los_angeles/", + "https://old.reddit.com/r/gifs/comments/gu8inv/la_cop_car_rams_protester_on_live_tv_chopper/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"LAPD SUV drives into protesters, speeds away", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-losangeles-12" + }, + { + "links":[ + "https://twitter.com/cwellborn3/status/1267318753571811329" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Los Angeles law enforcement shot at a man on his own balcony", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-losangeles-13" + }, + { + "links":[ + "https://www.tiktok.com/@w17ard/video/6833082563913977093?lang=en" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police shoot crowd of unarmed protestors with rubber bullets", + "date":"2020-05-31", + "date_text":"Believed to be May 31st", + "id":"ca-losangeles-16" + }, + { + "links":[ + "https://streamable.com/ja2fw6", + "https://www.reddit.com/r/PublicFreakout/comments/gv8vaw/lapd_beating_and_shooting_peaceful_protesters_for/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police strike protestors with batons", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ca-losangeles-14" + }, + { + "links":[ + "https://twitter.com/liveinochi/status/1267504585926557696", + "https://tikitoks.com/@jacksonmonroe/video/6833397689187716358" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police shoot rubber bullets at two peaceful protestors", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ca-losangeles-15" + }, + { + "links":[ + "https://twitter.com/balleralert/status/1268014113105555456", + "https://twitter.com/theweirdingwayy/status/1268048483920928768", + "https://twitter.com/EarvinD/status/1268087279458775040", + "https://abc7.com/deputies-shoot-pepper-balls-at-skateboarders-in-hollywood---video/6230652/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"LAPD drive by shootings at fleeing people announcing \"This is an illegal assembly\"", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"ca-losangeles-1" + }, + { + "links":[ + "https://www.instagram.com/p/CBCiZXOlno4/", + "https://www.dailynews.com/2020/06/03/dozens-arrested-in-downtown-los-angeles-tuesday-night-after-day-of-peaceful-protests/amp/", + "https://abc7.com/society/homeless-man-hit-in-face-with-rubber-bullet-amid-la-protest-witnesses-say/6234476/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Photograph documents aftermath of LAPD firing non-lethal round at face of homeless man in wheelchair", + "date":"2020-06-02", + "date_text":"June 2", + "id":"ca-losangeles-18" + }, + { + "links":[ + "https://www.reddit.com/r/LosAngeles/comments/gwzgn8/lapd_shoots_less_than_lethal_rounds_directly_at/", + "https://www.dailynews.com/2020/06/03/dozens-arrested-in-downtown-los-angeles-tuesday-night-after-day-of-peaceful-protests/", + "https://www.instagram.com/p/CBCiZXOlno4/", + "https://twitter.com/Terminal_Redux/status/1268870944615026690", + "https://abc7.com/society/homeless-man-hit-in-face-with-rubber-bullet-amid-la-protest-witnesses-say/6234476/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police shoot unarmed man in a wheelchair in the face", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"ca-losangeles-17" + }, + { + "links":[ + "https://www.instagram.com/p/CBEr2emJRyJ/?igshid=oloj7lgtv81t", + "https://www.instagram.com/p/CBBNXXkJs0a/?igshid=jgeposybda4a", + "https://abc7.com/protest-arrest-george-floyd-curfews/6234180/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police zip tie protesters and lock them inside cages", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"ca-losangeles-19" + }, + { + "links":[ + "https://abc7.com/lakewood-protest-tear-gas-black-lives-matter-fired-during/6235358/", + "https://www.reddit.com/r/longbeach/comments/gyma59/lakewoods_peaceful_protest_ends_in_cops_shooting/ftb8mvt?utm_source=share&utm_medium=web2x", + "https://www.reddit.com/r/longbeach/comments/gyma59/lakewoods_peaceful_protest_ends_in_cops_shooting/?utm_source=share&utm_medium=web2x" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Los Angeles", + "name":"Police fire projectiles at protesters and discharge teargas", + "date":"2020-06-05", + "date_text":"June 5th", + "id":"ca-los-angeles-20" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gttdkj/cop_driving_into_crowds_of_protestors/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Oakland", + "name":"Officer runs down protesters with police cruiser", + "date":"2020-05-30", + "date_text":"Believed to be May 30th", + "id":"ca-oakland-1" + }, + { + "links":[ + "https://twitter.com/SarahBelleLin/status/1266980899301683200" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Oakland", + "name":"Oakland law enforcement shoot a reporter", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-oakland-2" + }, + { + "links":[ + "https://old.reddit.com/r/PublicFreakout/comments/gv2lku/news_chopper_pans_out_as_riverside_county_sheriff/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Riverside", + "name":"Law enforcement break a car window for no apparent reason", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"ca-riverside-1" + }, + { + "links":[ + "https://youtu.be/pRmBO34aXME", + "https://twitter.com/mynameschazz/status/1266978442722947072?s=21" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Sacramento", + "name":"Police shoot protester in the head", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-sacramento-1" + }, + { + "links":[ + "https://www.facebook.com/danny.garza.167/videos/10222535335080905/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Sacramento", + "name":"Sacramento law enforcement shoot shoot protesters and then announce their assembly unlawful", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ca-sacramento-2" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1268334584443342850", + "https://twitter.com/reereeisme65/status/1267378345894789125" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Sacramento", + "name":"Police choke man and push woman filming event to the ground", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ca-sacramento-3" + }, + { + "links":[ + "https://www.youtube.com/watch?v=6uNySPSwhAI&feature=youtu.be", + "https://www.reddit.com/r/2020PoliceBrutality/comments/gynpd8/police_block_off_sidewalks_and_start_shooting_at/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"San Diego", + "name":"Police kettle and fire on fleeing protestors", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-sandiego-2" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1269009907367493634" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"San Diego", + "name":"Police abduct woman in unmarked van", + "date":"2020-06-04", + "date_text":"June 4th", + "id":"ca-sandiego-1" + }, + { + "links":[ + "https://twitter.com/caseylc9/status/1267285516262596608" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"San Francisco", + "name":"San Francisco law enforcement shove man off the sidewalk onto the ground", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-sanfrancisco-1" + }, + { + "links":[ + "https://twitter.com/junkieanteater/status/1266603252839141377", + "https://www.reddit.com/r/PublicFreakout/comments/gtksgq/cop_decides_to_shoot_at_protestor_who_hurt_his/", + "https://www.reddit.com/r/PublicFreakout/comments/gtg2cb/cop_waits_in_excitement_like_its_a_game/", + "https://twitter.com/bowiezamudio/status/1266598285206106113", + "https://twitter.com/kakimeows/status/1266982771005616128" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"San Jose", + "name":"Police shoot a projectile at a protestor", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"ca-sanjose-1" + }, + { + "links":[ + "https://twitter.com/DeadByDawn101/status/1268825100385521665" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"San Jose", + "name":"Officer puts knee on neck of protester", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"ca-sanjose-3" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1269267786792144898", + "https://abc7news.com/man-who-trains-san-jose-police-about-bias-severely-injured-by-riot-gun-during-protest/6234212/", + "https://www.latimes.com/california/story/2020-06-06/community-organizer-shot-by-rubber-bullet-during-protest" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"San Jose", + "name":"Police fire on community activist", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"ca-sanjose-2" + }, + { + "links":[ + "https://twitter.com/ma7dz/status/1267697838244298752" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"San Luis Obispo", + "name":"Law enforcement fire on crowd with their arms up chanting", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ca-sanluisobispo-1" + }, + { + "links":[ + "https://twitter.com/YourAnonCentral/status/1266991237355069442" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Santa Ana", + "name":"Police open fire on protestors", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-santaana-1" + }, + { + "links":[ + "https://twitter.com/GIFsZP/status/1267241803750813703" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Santa Monica", + "name":"Police fire pepper bullets into apartment", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ca-santamonica-1" + }, + { + "links":[ + "https://www.theguardian.com/us-news/2020/jun/04/vallejo-police-kill-unarmed-man-california" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Vallejo", + "name":"Police fatally shoot unarmed 22 year old", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ca-vallejo-1" + }, + { + "links":[ + "https://www.instagram.com/p/CA7KMc9pX5S/" + ], + "state":"California", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/California.md", + "city":"Walnut Creek", + "name":"Armored law enforcement vehicle threatens protestors", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"ca-walnutcreek-1" + }, + { + "links":[ + "https://www.kansascity.com/news/local/article243188436.html", + "https://www.facebook.com/KuhlPics/photos/a.467614509924515/3214027235283215/?type=3&theater" + ], + "state":"Missouri", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", + "city":"Kansas City", + "name":"Police pepper spray and arrest protestor holding sign", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mo-kansascity-5" + }, + { + "links":[ + "https://twitter.com/RayVaca/status/1266959833753890816", + "https://twitter.com/whoareyoujudy_/status/1266968858159702017" + ], + "state":"Missouri", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", + "city":"Kansas City", + "name":"Police pepper spray protestors walking away and later arrest one of them", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mo-kansascity-6" + }, + { + "links":[ + "https://twitter.com/imunoz03/status/1266908372881768448" + ], + "state":"Missouri", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", + "city":"Kansas City", + "name":"Police tear gas a park", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mo-kansascity-1" + }, + { + "links":[ + "https://twitter.com/Elise_Villa/status/1267310319526989824", + "https://old.reddit.com/r/PublicFreakout/comments/guswxo/he_wasnt_even_addressing_the_police/" + ], + "state":"Missouri", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", + "city":"Kansas City", + "name":"Kansas City police attempt to arrest a man leading the protest then spray the crowd", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mo-kansascity-2" + }, + { + "links":[ + "https://www.cnn.com/2020/06/02/us/kansas-city-police-spray-protester-who-yelled/index.html", + "https://twitter.com/weslyinfinity/status/1267321172309544960?" + ], + "state":"Missouri", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", + "city":"Kansas City", + "name":"Police arrest man for speaking and teargas nearby protestors", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"mo-kansascity-3" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gut8n1/in_kansas_city/", + "https://www.google.ca/maps/place/Giralda/@39.0425007,-94.5880276,3a,75y,208.49h,97.09t/data=" + ], + "state":"Missouri", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", + "city":"Kansas City", + "name":"Police pull away protestor and pepper sprays others", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"mo-kansascity-4" + }, + { + "links":[ + "https://www.ksdk.com/article/news/local/video-shows-florissant-officer-in-unmarked-car-hit-man-who-appears-to-be-running-away/63-5db688ff-2f31-4e55-9d24-0707ecdb677f", + "https://www.facebook.com/realstlnews/videos/2610967669219012/" + ], + "state":"Missouri", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Missouri.md", + "city":"St. Louis", + "name":"Florissant officer hits man with unmarked police vehicle", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"mo-stlouis-1" + }, + { + "links":[ + "https://twitter.com/PhxProtestLIVE/status/1268390978571825156?s=20" + ], + "state":"Arizona", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Arizona.md", + "city":"Phoenix", + "name":"Officer tackles and arrests person walking home from protest", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"az-phoenix-1" + }, + { + "links":[ + "https://www.kcci.com/article/developing-protesters-face-off-with-police-in-downtown-des-moines/32717301" + ], + "state":"Iowa", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", + "city":"Des Moines", + "name":"Police repeatedly shoot tear gas into crowd, even after crowd has dispersed", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"ia-desmoines-2" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gxlfdo/police_truck_shoots_at_cars_hitting_mother_and/?utm_source=share&utm_medium=web2x", + "https://www.tiktok.com/@jakegracey/video/6834936818799004934?source=h5_m", + "https://www.google.ca/maps/@41.6293563,-93.6988361,3a,75y,358.27h,68.85t/data=" + ], + "state":"Iowa", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", + "city":"Des Moines", + "name":"Police truck shoots at cars, hitting mother and breaking her finger", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ia-desmoines-3" + }, + { + "links":[ + "https://twitter.com/RachelSB/status/1267260438900867074", + "https://www.desmoinesregister.com/story/news/2020/05/31/register-reporter-arrested-while-covering-protest/5304560002/" + ], + "state":"Iowa", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", + "city":"Des Moines", + "name":"Police detail Des Moines Register reporter while covering event", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ia-desmoines-7" + }, + { + "links":[ + "https://twitter.com/katie_akin/status/1267694434847731713", + "https://www.desmoinesregister.com/story/news/2020/06/02/des-moines-police-pepper-spray-journalist-iowa-george-floyd-protest-des-moines-register-reporter/3126478001/" + ], + "state":"Iowa", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", + "city":"Des Moines", + "name":"Police pepper spray Des Moines Register reporter even as she repeatedly announced herself as press", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ia-desmoines-4" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1268235074580987906" + ], + "state":"Iowa", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", + "city":"Des Moines", + "name":"Police use or threaten to use pepper-spray in an elevator on apartment residents trying to go home", + "date":"2020-06-02", + "date_text":"(believed to be) June 2nd", + "id":"ia-desmoines-1" + }, + { + "links":[ + "https://www.pinknews.co.uk/2020/06/05/police-raid-blazing-saddle-des-moines-iowa-black-lives-matter-stonewall/?fbclid=IwAR20SUPSke3O_U2jqXaicl3dOcKwKPYlG5eOc131oao76Z2rEXXz0-ASORQ", + "http://iowainformer.com/politics/2020/06/des-moines-gay-bar-raided-amid-black-lives-matter-protests-as-pride-month-begins/", + "https://twitter.com/aaronpcalvin/status/1268708285517004801", + "https://www.google.ca/maps/place/The+Blazing+Saddle/@41.590306,-93.6114412,3a,75y,275.31h,90t/data=" + ], + "state":"Iowa", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", + "city":"Des Moines", + "name":"Armed police raid gay bar helping wounded Black Lives Matter protesters on the first day of Pride Month", + "date":"2020-06-05", + "date_text":"June 5th", + "id":"ia-desmoines-5" + }, + { + "links":[ + "https://twitter.com/DJPAIMON/status/1268399580753858561" + ], + "state":"Iowa", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Iowa.md", + "city":"Iowa City", + "name":"Police shoot tear gas at peaceful protestors who have their hands up", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"ia-iowacity-1" + }, + { + "links":[ + "https://twitter.com/itsraiialex/status/1266770032719040513" + ], + "state":"Nevada", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Nevada.md", + "city":"Las Vegas", + "name":"Police arrest a man for speaking at them from a distance.", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"nv-lasvegas-3" + }, + { + "links":[ + "https://twitter.com/LasVegasLocally/status/1267210841595604992", + "https://www.instagram.com/p/CA14rooHIC6/?utm_source=ig_web_copy_link" + ], + "state":"Nevada", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Nevada.md", + "city":"Las Vegas", + "name":"Police shove and drag man through the street", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"nv-lasvegas-1" + }, + { + "links":[ + "https://mobile.twitter.com/chadloder/status/1267168204863926274" + ], + "state":"Nevada", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Nevada.md", + "city":"Las Vegas", + "name":"Police charge into peaceful crowd shouting \"grab anybody\"", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"nv-lasvegas-2" + }, + { + "links":[ + "https://twitter.com/mattaustinTV/status/1267189278691528706", + "https://twitter.com/RACCEWtby/status/1268173057375514624", + "https://twitter.com/Calibud_Art/status/1268274760250777600" + ], + "state":"Connecticut", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Connecticut.md", + "city":"Waterbury", + "name":"Police tackle and detain 6 protestors", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ct-waterbury-2" + }, + { + "links":[ + "https://twitter.com/Youbeenafannn/status/1268253924471037959" + ], + "state":"Connecticut", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Connecticut.md", + "city":"Waterbury", + "name":"Officer forces women into car and wrestles with another", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"ct-waterbury-1" + }, + { + "links":[ + "https://twitter.com/ItsKadynC/status/1266967646345613317", + "https://twitter.com/the7goonies/status/1266989439160590336", + "https://papost.org/2020/05/31/erie-woman-who-was-kicked-by-police-officer-saysi-was-100-percent-peaceful/" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Erie", + "name":"Police officer maces woman and kicks her in the head", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"pa-erie-1" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1266862623041167362" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Harrisburg", + "name":"Police pepperspray protesters helping someone stand up", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"pa-harrisburg-1" + }, + { + "links":[ + "https://twitter.com/UR_Ninja/status/1266913490301792257" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Philadelphia", + "name":"Police beat down man", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"pa-philadelphia-1" + }, + { + "links":[ + "https://youtu.be/QDcCFN_LQPA" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Philadelphia", + "name":"Police drag cooperating man from car and punch him in the face", + "date":"", + "date_text":"", + "id":"pa-philadelphia-2" + }, + { + "links":[ + "https://metro.co.uk/2020/06/01/cop-put-baton-george-floyd-protesters-hand-put-knee-neck-12789427/", + "https://twitter.com/mkultranews/status/1267305587206807553" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Philadelphia", + "name":"Philadelphia cops beat man and forcefully put his fingers on their baton.", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"pa-philadelphia-3" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/guve5f/philadelphia_police_traps_protesters_on_highway/", + "https://twitter.com/bbcease/status/1267582823428501508", + "https://www.youtube.com/watch?v=cXzWicPCNQg", + "https://youtu.be/oCVe8mXOU94", + "https://vimeo.com/425235774", + "https://youtu.be/srC5l--cn14" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Philadelphia", + "name":"Philadelphia Police Trap Protesters on Highway, Then Tear Gas Them and Shoot Rubber Bullets", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"pa-philadelphia-4" + }, + { + "links":[ + "https://twitter.com/d0wnrrrrr/status/1267691766188310528" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Philadelphia", + "name":"Police officer pepper-sprays three people on their knees", + "date":"2020-06-01", + "date_text":"believed to be June 1st", + "id":"pa-philadelphia-5" + }, + { + "links":[ + "https://www.inquirer.com/news/philadelphia-police-beating-temple-student-evan-gorski-protest-20200604.html", + "https://twitter.com/greg_doucette/status/1268766216161763328", + "https://twitter.com/Peopledelphia/status/1267588991655784448", + "https://www.inquirer.com/news/philadelphia-police-beating-temple-student-joseph-bologna-protest-20200605.html", + "https://whyy.org/articles/philly-police-commander-videotaped-beating-protesters-linked-to-narcotics-scandal-misconduct/" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Philadelphia", + "name":"Police shove protestors and strike man across the face with a baton", + "date":"2020-06-01", + "date_text":"Jun 1st", + "id":"pa-philadelphia-7" + }, + { + "links":[ + "https://twitter.com/tippedminimum/status/1268001268406136832" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Philadelphia", + "name":"Officer attacks woman for no apparent reason", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"pa-philadelphia-8" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1268200800649707526" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Philadelphia", + "name":"Police kneel on man who says \"I can't breathe\", officer yells profanities back", + "date":"2020-06-03", + "date_text":"believed to be June 3rd", + "id":"pa-philadelphia-6" + }, + { + "links":[ + "https://www.youtube.com/watch?v=TxHxU6nhzzQ", + "https://twitter.com/PaulaReedWard/status/1268547369618026503", + "https://www.post-gazette.com/news/crime-courts/2020/06/03/East-Liberty-protest-Abigail-Rubio-says-Pittsburgh-police-intimidated-video/stories/202006030158" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Pittsburgh", + "name":"Officer pepper-sprays a woman who is on her knees with her hands up", + "date":"", + "date_text":"", + "id":"pa-pittsburgh-1" + }, + { + "links":[ + "https://www.reddit.com/r/pittsburgh/comments/guzshz/police_declaring_an_unlawful_assembly_against_a/", + "https://www.facebook.com/BenjaminKFerris/posts/3091613010894973", + "https://twitter.com/gautamyadav818/status/1267606317893550080" + ], + "state":"Pennsylvania", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Pennsylvania.md", + "city":"Pittsburgh", + "name":"Police fire tear gas and rubber bullets on peaceful assembly", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"pa-pittsburgh-2" + }, + { + "links":[ + "https://twitter.com/secretlaith/status/1268251322467450880" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"Buffalo", + "name":"Police tackle man giving interview", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ny-buffalo-1" + }, + { + "links":[ + "https://twitter.com/WBFO/status/1268712530358292484", + "https://news.wbfo.org/post/graphic-video-buffalo-police-officers-violently-shove-man-ground", + "https://www.facebook.com/watch/?ref=external&v=2489206818056597", + "https://www.wivb.com/news/five-people-arrested-one-person-injured-during-protest-activity-in-niagara-square/", + "https://www.reddit.com/r/PublicFreakout/comments/gwv7k4/just_about_an_hour_ago_police_officers_shove_man/fsxfeb3/" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"Buffalo", + "name":"Police shove elderly man, causing him to fall and hit the back of his head", + "date":"2020-06-04", + "date_text":"June 4th", + "id":"ny-buffalo-2" + }, + { + "links":[ + "https://twitter.com/PhotoJazzy/status/1269056626843099137" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"Buffalo", + "name":"Reporter shot at after identifying himself", + "date":"2020-06-05", + "date_text":"June 5th", + "id":"ny-buffalo-3" + }, + { + "links":[ + "https://twitter.com/whitney_hu/status/1266540710188195843", + "https://twitter.com/JasonLemon/status/1266529475757510656", + "https://twitter.com/zayer_dounya/status/1266581597760831489" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Police shove woman to the ground, inducing a seizure", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"ny-newyorkcity-1" + }, + { + "links":[ + "https://twitter.com/DriveWendys/status/1266555286678048770" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Police drive by man and hit him with car door", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"ny-newyorkcity-2" + }, + { + "links":[ + "https://www.cityandstateny.com/articles/politics/news-politics/even-black-lawmakers-get-pepper-sprayed.html", + "https://twitter.com/GwynneFitz/status/1266522692326428672" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Member of the New York State Assembly pepper-sprayed", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"ny-newyorkcity-3" + }, + { + "links":[ + "https://twitter.com/Stoney_Holiday/status/1266616250685444096", + "https://www.instagram.com/p/CAzSOtGlKQY/" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Police officer throws man against police car", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ny-newyorkcity-4" + }, + { + "links":[ + "https://twitter.com/j0ncampbell/status/1266514356071735296" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"NYPD beat people with batons", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ny-newyorkcity-5" + }, + { + "links":[ + "https://twitter.com/ZachReports/status/1266557305107202049", + "https://twitter.com/BTSsavedmylife9/status/1266754310161006594" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Cop shoves a guy into a metal fence", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ny-newyorkcity-6" + }, + { + "links":[ + "https://twitter.com/crankberries/status/1266584559245803522", + "https://twitter.com/greg_doucette/status/1266850004720812032" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Cop shoving a person to the ground towards metal trash bins", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ny-newyorkcity-7" + }, + { + "links":[ + "https://twitter.com/HuffPost/status/1266936484692725766", + "https://www.huffpost.com/entry/huffpost-reporter-chris-mathias-arrested_n_5ed320d9c5b640cb8341c921" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Huffpost reporter is arrested by NYPD", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ny-newyorkcity-8" + }, + { + "links":[ + "https://twitter.com/_doreenpt/status/1266994439039455232" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Police pull off protesters mask to pepper spray him", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ny-newyorkcity-9" + }, + { + "links":[ + "https://twitter.com/pgarapon/status/1266885414016688134", + "https://twitter.com/mkultranews/status/1266893237450498048" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"NYPD rams protesters", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ny-newyorkcity-10" + }, + { + "links":[ + "https://twitter.com/theactivistTati/status/1266889419858075649" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Police assault protesters", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ny-newyorkcity-11" + }, + { + "links":[ + "https://twitter.com/zellnor4ny/status/1266802303807500288" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"State senator pepper sprayed", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ny-newyorkcity-12" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gu2u28/more_documented_aggression_in_flatbush_brooklyn/" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Protesters with hands up assaulted by police", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ny-newyorkcity-15" + }, + { + "links":[ + "https://twitter.com/tylergabriel_/status/1267287516345925632" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Police injure journalist", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ny-newyorkcity-16" + }, + { + "links":[ + "https://wapo.st/2Mx7WY6", + "https://www.washingtonpost.com/national/protests-police-brutality-video/2020/06/05/a9e66568-a768-11ea-b473-04905b1af82b_story.html" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Officers beat man until his face and belongings are bloody", + "date":"2020-05-31", + "date_text":"May 31", + "id":"ny-newyorkcity-17" + }, + { + "links":[ + "https://mobile.twitter.com/jangelooff/status/1267308341660979200" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Officer threatens protestors with what appears to be a handgun", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ny-newyorkcity-18" + }, + { + "links":[ + "https://twitter.com/jhermann/status/1268043720399691776", + "https://twitter.com/altochulo/status/1268018561571840000" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Police officer body slams protestor", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"ny-newyorkcity-19" + }, + { + "links":[ + "https://www.lgbtqnation.com/2020/06/cops-beat-lgbtq-protestors-leaving-demonstration-stonewall-inn/" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Police beat protesters leaving Stonewall Inn solidarity protest", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"ny-newyorkcity-20" + }, + { + "links":[ + "https://www.reddit.com/r/newyorkcity/comments/gv8aft/police_beat_man_without_even_attempting_to_arrest/", + "https://www.reddit.com/r/PublicFreakout/comments/gv43ar/police_beat_man_without_even_attempting_to_arrest/" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Officers beat man with batons", + "date":"2020-06-02", + "date_text":"(Believed to be) June 2nd", + "id":"ny-newyorkcity-21" + }, + { + "links":[ + "https://twitter.com/joshfoxfilm/status/1268366550475603969", + "https://www.dailymail.co.uk/news/article-8388515/NYPD-cop-beats-cyclist-nightstick-tries-away.html" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Man walking his bike beaten by officers with batons", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"ny-newyorkcity-22" + }, + { + "links":[ + "https://twitter.com/johnknefel/status/1268736946031001607" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"NYPD Officers hit and knock down a protestor and a journalist", + "date":"2020-06-04", + "date_text":"June 4th", + "id":"ny-newyorkcity-23" + }, + { + "links":[ + "https://twitter.com/sa0un/status/1268933117827571714" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Officers arrest cyclists; a man who questions police is clubbed in the neck", + "date":"2020-06-04", + "date_text":"June 4th", + "id":"ny-newyorkcity-24" + }, + { + "links":[ + "https://twitter.com/AndomForNY/status/1269065176814358529" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"NYPD pushes crowd into tight space and attacks several with batons", + "date":"2020-06-05", + "date_text":"June 5th", + "id":"ny-newyorkcity-25" + }, + { + "links":[ + "https://www.reddit.com/r/Brooklyn/comments/gy40fz/nypd_aggressively_arrest_cyclist_on_blm_group_ride/?utm_source=share&utm_medium=web2x" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"New York City", + "name":"Multiple police officers tackle cyclist protester one officer punches head of protester", + "date":"2020-06-06", + "date_text":"June 6th", + "id":"ny-newyorkcity-26" + }, + { + "links":[ + "https://twitter.com/bleeezyy_/status/1266894195865931778" + ], + "state":"New York", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/New York.md", + "city":"Rochester", + "name":"Police shoot at people filming", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ny-rochester-1" + }, + { + "links":[ + "https://twitter.com/joeguillen/status/1266563974658744321" + ], + "state":"Michigan", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", + "city":"Detroit", + "name":"Officer charges through other officers to attack a protestor who is backing away", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"mi-detroit-4" + }, + { + "links":[ + "https://twitter.com/julietmariaa/status/1266568356976635904" + ], + "state":"Michigan", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", + "city":"Detroit", + "name":"Riot police charge peaceful protestors", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"mi-detroit-5" + }, + { + "links":[ + "https://twitter.com/AkramG03/status/1266876680142049282" + ], + "state":"Michigan", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", + "city":"Detroit", + "name":"Police shove and scream at men walking down the street", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mi-detroit-1" + }, + { + "links":[ + "https://twitter.com/DetroitReporter/status/1266957225114861568", + "https://www.freep.com/story/news/local/michigan/detroit/2020/06/01/journalists-targeted-police-protests-detroit/5302659002/" + ], + "state":"Michigan", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", + "city":"Detroit", + "name":"Police pepperspray reporter holding up media badge", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mi-detroit-2" + }, + { + "links":[ + "https://twitter.com/reporterdavidj/status/1266966021077962752" + ], + "state":"Michigan", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", + "city":"Detroit", + "name":"Police shoot rubber bullets at reporters", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mi-detroit-3" + }, + { + "links":[ + "https://twitter.com/TheModLibrarian/status/1266587927783620613" + ], + "state":"Michigan", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", + "city":"Detroit", + "name":"Woman is charged by police and thrown to the ground", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mi-detroit-6" + }, + { + "links":[ + "https://old.reddit.com/r/Bad_Cop_No_Donut/comments/gub8fx/police_shoot_protestor_point_blank_in_the_face/", + "https://www.fox17online.com/news/local-news/grand-rapids/grpd-conducting-internal-investigation-after-viral-video-of-man-being-pepper-sprayed", + "https://www.reddit.com/r/2020PoliceBrutality/comments/gv3xuu/police_in_grand_rapids_michigan_spray_a_man/" + ], + "state":"Michigan", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", + "city":"Grand Rapids", + "name":"Police spray unarmed man with pepperspray and shoot him in the face with a teargas canister", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mi-grandrapids-1" + }, + { + "links":[ + "https://twitter.com/i/status/1267677463850745858", + "https://www.facebook.com/BlaineBurnett11/videos/963503949886/" + ], + "state":"Michigan", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", + "city":"Kalamazoo", + "name":"Police fire tear gas at prone protesters", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"mi-kalamazoo-1" + }, + { + "links":[ + "https://streamable.com/xvlky1", + "https://streamable.com/0wfiu3", + "https://www.mlive.com/news/kalamazoo/2020/06/my-heart-was-wrenched-with-pain-assistant-chief-says-of-ordering-tear-gas-on-protesters.html", + "https://ibb.co/Fgrwqkj" + ], + "state":"Michigan", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Michigan.md", + "city":"Kalamazoo", + "name":"Police fire tear gas at peaceful protesters", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"mi-kalamazoo-2" + }, + { + "links":[ + "https://twitter.com/BruceBrownJr/status/1266979654499479552" + ], + "state":"Oklahoma", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Oklahoma.md", + "city":"Oklahoma City", + "name":"Person with hands up struck in chest by projectile", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ok-oklahomacity-1" + }, + { + "links":[ + "https://twitter.com/perfectlyg0lden/status/1267014293628870656" + ], + "state":"Unknown Location", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Unknown Location.md", + "city":"", + "name":"Compilation of incidents", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"tbd-tbd-1" + }, + { + "links":[ + "https://twitter.com/samjwc/status/1267355060666654720" + ], + "state":"Unknown Location", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Unknown Location.md", + "city":"", + "name":"Officer beats a protestor while pinning him on the ground", + "date":"", + "date_text":"", + "id":"tbd-tbd-2" + }, + { + "links":[ + "https://twitter.com/Desi_Stennett/status/1266996885824380929" + ], + "state":"Tennessee", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Tennessee.md", + "city":"Memphis", + "name":"Police swarm a woman without provocation", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"tn-memphis-1" + }, + { + "links":[ + "https://www.facebook.com/story.php?story_fbid=3011143412313088&id=100002523772680", + "https://vtdigger.org/2020/06/03/police-arrest-4-at-st-johnsbury-george-floyd-protest/" + ], + "state":"Vermont", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Vermont.md", + "city":"St. Johnsbury", + "name":"Police shove a protesting woman down a set of concrete steps.", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"vt-stjohnsbury-1" + }, + { + "links":[ + "https://mobile.twitter.com/chadloder/status/1267011092045115392" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Officer pins protestor by pushing his knee into his neck", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"wa-seattle-1" + }, + { + "links":[ + "https://twitter.com/gunduzbaba1905/status/1266937500607614982" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Police beat unarmed man on the ground", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"wa-seattle-2" + }, + { + "links":[ + "https://www.reddit.com/r/Bad_Cop_No_Donut/comments/gtt3w8/i_caught_the_moment_seattle_police_pepper_sprayed/" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Police indiscriminately pepper spray peaceful protesters", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"wa-seattle-3" + }, + { + "links":[ + "https://www.fox10phoenix.com/news/video-shows-milk-poured-over-face-of-child-pepper-sprayed-in-seattle-protest" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Police pepper spray young child", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"wa-seattle-4" + }, + { + "links":[ + "https://www.reddit.com/r/Seattle/comments/gu3qq1/cop_just_casually_tosses_tear_gas_at_my_feet_like/", + "https://www.google.ca/maps/@47.6117535,-122.3363867,3a,75y,340.76h,98.03t/data=" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Police throw tear gas at peaceful protestors", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"wa-seattle-8" + }, + { + "links":[ + "https://twitter.com/EDDIFUL/status/1267338642617364481", + "https://www.reddit.com/r/PublicFreakout/comments/gv9g5n/the_police_were_spotted_instigating_violence/", + "https://peertube.live/videos/watch/9e9323af-3ea1-4d3c-856d-a7f0a66688e7" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Police officer pulls protestor to the ground unprovoked", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"wa-seattle-6" + }, + { + "links":[ + "https://twitter.com/The_Stepover/status/1267236742278463488", + "https://twitter.com/eavu__/status/1267260549814870016" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Law enforcement officer punches pinned protestor", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"wa-seattle-12" + }, + { + "links":[ + "https://twitter.com/The_Stepover/status/1267237940184231936" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Law enforcement officers throw flashbangs into peaceful crowd", + "date":"2020-05-31", + "date_text":"(Believed to be) May 31st", + "id":"wa-seattle-7" + }, + { + "links":[ + "https://www.reddit.com/r/Seattle/comments/gv0ru3/this_is_the_moment_it_all_happened/", + "https://www.reddit.com/r/PublicFreakout/comments/gv1spo/the_moment_seattle_police_instigate_a_riot_over_a/" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Police initiate violence", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"wa-seattle-9" + }, + { + "links":[ + "https://twitter.com/Acyn/status/1267673936659021830?s=20" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Police strike active newscrew with flashbang", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"wa-seattle-10" + }, + { + "links":[ + "https://twitter.com/catsayshello/status/1268073344814866432", + "https://www.instagram.com/tv/CA63KMnlVvu/?igshid=hfp3uoaqe23p", + "https://old.reddit.com/r/Seattle/comments/gv0ru3/this_is_the_moment_it_all_happened/" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Officers deploy flashbangs and pepper spray peaceful protesters", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"wa-seattle-5" + }, + { + "links":[ + "https://twitter.com/i/status/1269352173663592449" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Officer chokes and places knee on neck of woman", + "date":"2020-06-06", + "date_text":"June 6th", + "id":"wa-seattle-11" + }, + { + "links":[ + "https://twitter.com/MikeApe7/status/1269533701194444800", + "https://twitter.com/MikeApe7/status/1269538201254805504" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Police kettle protesters to force them to disperse through tear-gas", + "date":"2020-06-06", + "date_text":"June 6th", + "id":"wa-seattle-13" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gycscp/cant_go_1_day_without_teargaslighting_us/?utm_source=share&utm_medium=web2x", + "https://www.forbes.com/sites/jemimamcevoy/2020/06/08/seattle-police-use-tear-gas-against-protestors-despite-city-ban/#7e98a1d5b4bc" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Police use tear gas on protestors", + "date":"2020-06-07", + "date_text":"June 7th", + "id":"wa-seattle-15" + }, + { + "links":[ + "https://twitter.com/chaseburnsy/status/1269890344331571201", + "https://www.reddit.com/r/Seattle/comments/gywxhz/folks_i_need_your_help/", + "https://imgur.com/a/fWkU0SA" + ], + "state":"Washington", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington.md", + "city":"Seattle", + "name":"Woman hit with police projectile resumes breathing after CPR, delivered to hospital", + "date":"2020-06-07", + "date_text":"June 7th", + "id":"wa-seattle-14" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gt69qe/police_start_shooting_press_with_some_kinda/", + "https://twitter.com/greg_doucette/status/1266557059606163456", + "https://twitter.com/KaitlinRustWAVE/status/1268218653104693248" + ], + "state":"Kentucky", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", + "city":"Louisville", + "name":"Police shoot rubber bullets at reporter", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ky-louisville-2" + }, + { + "links":[ + "https://twitter.com/shannynsharyse/status/1267015577266249728", + "https://twitter.com/shannynsharyse/status/1266631722239766528" + ], + "state":"Kentucky", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", + "city":"Louisville", + "name":"Young woman shot in the head by a rubber bullet", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ky-louisville-4" + }, + { + "links":[ + "https://twitter.com/nataliealund/status/1266877181164089349", + "https://twitter.com/WFPLNews/status/1266923468102262784" + ], + "state":"Kentucky", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", + "city":"Louisville", + "name":"Police smashing water bottles", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ky-louisville-1" + }, + { + "links":[ + "https://twitter.com/Itz5500Gillz/status/1267454024288292867" + ], + "state":"Kentucky", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", + "city":"Louisville", + "name":"Police shoot at cars in traffic from overpass", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ky-louisville-5" + }, + { + "links":[ + "https://reddit.com/r/PublicFreakout/comments/gutezm/multiple_kentucky_state_police_troopers_tackled/" + ], + "state":"Kentucky", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", + "city":"Louisville", + "name":"Louisville police swarm and beat a man screaming on the ground", + "date":"2020-06-01", + "date_text":"Believed to be June 1st", + "id":"ky-louisville-3" + }, + { + "links":[ + "https://edition.cnn.com/2020/06/02/us/david-mcatee-louisville-what-we-know-trnd/index.html", + "https://edition.cnn.com/2020/06/01/us/louisville-protests-man-shot-dead/index.html", + "https://youtu.be/wDg9fev67lw", + "https://mobile.twitter.com/chadloder/status/1267555717751296000", + "https://www.nytimes.com/video/us/100000007175316/the-david-mcatee-shooting-did-aggressive-policing-lead-to-a-fatal-outcome.html" + ], + "state":"Kentucky", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", + "city":"Louisville", + "name":"Restaurant owner shot and killed", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ky-louisville-6" + }, + { + "links":[ + "https://www.reddit.com/r/Louisville/comments/gw5joa/peaceful_protesters_marching_in_st_mathews_get/" + ], + "state":"Kentucky", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Kentucky.md", + "city":"Louisville", + "name":"Protestors in St. Matthews shot with pepper rounds", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"ky-louisville-7" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/guxm5o/police_arresting_a_peaceful_protestor_for_simply/?utm_source=share&utm_medium=ios_app&utm_name=iossmf", + "https://www.reddit.com/r/iamatotalpieceofshit/comments/gugrfa/man_reaches_out_with_love_to_the_cops_and_they/", + "https://www.postandcourier.com/news/he-told-charleston-police-i-am-not-your-enemy-then-he-was-handcuffed/article_e7de4b0a-a43f-11ea-a019-1f9e6a20ea55.html" + ], + "state":"South Carolina", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/South Carolina.md", + "city":"Charleston", + "name":"Police Individually Target Peaceful Protestor and Arrest Him", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"sc-charleston-1" + }, + { + "links":[ + "https://twitter.com/track4life_bry/status/1268313958479532034" + ], + "state":"South Carolina", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/South Carolina.md", + "city":"Location Unknown", + "name":"Police Assault Suspect on Ground During Arrest", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"sc-unknown-1" + }, + { + "links":[ + "https://www.cnn.com/2020/06/05/us/atlanta-police-body-slam-woman/index.html" + ], + "state":"Georgia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", + "city":"Atlanta", + "name":"Officer body slams woman onto ground", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"ga-atlanta-1" + }, + { + "links":[ + "https://twitter.com/ava/status/1266797973834395648?s=20", + "https://twitter.com/Brittm_tv/status/1266497944796225538" + ], + "state":"Georgia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", + "city":"Atlanta", + "name":"Officer shoves a woman with his bike", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"ga-atlanta-2" + }, + { + "links":[ + "https://twitter.com/danielvankirk/status/1266947767840063489", + "https://www.instagram.com/p/CA27quMhqJA/", + "https://twitter.com/SarahBaska/status/1267308455225774080?s=20", + "https://twitter.com/Brittm_tv/status/1267147449577148423", + "https://www.standard.co.uk/news/world/atlanta-police-officers-fired-dragging-students-car-protest-a4457371.html#gsc.tab=0" + ], + "state":"Georgia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", + "city":"Atlanta", + "name":"Cops pull people out of their car, taze them", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ga-atlanta-3" + }, + { + "links":[ + "https://twitter.com/ANGELCUCCl/status/1266939757252280321" + ], + "state":"Georgia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", + "city":"Atlanta", + "name":"Police punch man on the ground, then tackle woman to ground who objects", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ga-atlanta-4" + }, + { + "links":[ + "https://twitter.com/DanWolken/status/1266877753015570433", + "https://www.google.ca/maps/@33.7579387,-84.3934527,3a,75y,90.87h,90t/data=" + ], + "state":"Georgia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", + "city":"Atlanta", + "name":"Photographer tackled to the ground by four police officers", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ga-atlanta-5" + }, + { + "links":[ + "https://www.facebook.com/onlettingo/videos/10157072617626056", + "https://www.facebook.com/kristajeannettewilliamson/posts/3334778089868526" + ], + "state":"Georgia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", + "city":"Atlanta", + "name":"Police shove and shoot protesters", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ga-atlanta-6" + }, + { + "links":[ + "https://twitter.com/ftn_shark/status/1266854056506667009?s=19", + "https://twitter.com/throneofmorac/status/1266870493858185217?s=09" + ], + "state":"Georgia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Georgia.md", + "city":"Lawrenceville", + "name":"Man tased in back for speaking up after man on ground is punched in face by cop", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"ga-lawrenceville-1" + }, + { + "links":[ + "https://twitter.com/thickliljawn/status/1267239498083110913" + ], + "state":"Florida", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", + "city":"Fort Lauderdale", + "name":"Police Shove a woman down to her knees", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"fl-fortlauderdale-1" + }, + { + "links":[ + "https://www.miamiherald.com/news/local/community/broward/article243193481.html" + ], + "state":"Florida", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", + "city":"Fort Lauderdale", + "name":"Law enforcement shoot a woman in the head", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"fl-fortlauderdale-2" + }, + { + "links":[ + "https://twitter.com/BillyCorben/status/1267644127178563588" + ], + "state":"Florida", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", + "city":"Miami", + "name":"Man tackled to ground after speaking to police", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"fl-miami-1" + }, + { + "links":[ + "https://twitter.com/ewcfilms/status/1268003421786906627" + ], + "state":"Florida", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", + "city":"Orlando", + "name":"Police use excessive force during an arrest", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"fl-orlando-1" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1269017349727928320", + "https://www.google.com/maps/place/29+W+South+St,+Orlando,+FL+32801,+USA/@28.5384293,-81.3797504,20z/data=" + ], + "state":"Florida", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", + "city":"Orlando", + "name":"Police fire on protesters outside city hall", + "date":"", + "date_text":"Date unknown", + "id":"fl-orlando-2" + }, + { + "links":[ + "https://twitter.com/walkin_da_talk/status/1268718193679499266", + "https://twitter.com/jamiebullockk/status/1268658254806163460", + "https://twitter.com/InesseC/status/1268912900565094401", + "https://www.google.com/maps/@27.9563654,-82.4569108,3a,75y,255.48h,92.17t/data=" + ], + "state":"Florida", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Florida.md", + "city":"Tampa", + "name":"One woman is pinned to the ground and another is pepper-sprayed", + "date":"2020-06-04", + "date_text":"June 4th", + "id":"fl-tampa-1" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gwm2mf/police_using_selective_enforcement_on_protestors/", + "https://twitter.com/Eggsalaaad/status/1268223118394392576" + ], + "state":"North Dakota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/North Dakota.md", + "city":"Fargo", + "name":"Police using selective enforcement on black individuals", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"nd-fargo-1" + }, + { + "links":[ + "https://twitter.com/NeonMarionette/status/1266962885957292032?s=20" + ], + "state":"Wisconsin", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Wisconsin.md", + "city":"Madison", + "name":"Officer pepper-sprays protestor walking backwards with arms raised", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"wi-madison-1" + }, + { + "links":[ + "http://www.milwaukeeindependent.com/articles/milwaukee-common-council-calls-investigation-use-knee-police-restrain-protestor/", + "https://old.reddit.com/r/gifs/comments/gxptyo/june_2_2020_milwaukee_police_punch_and_knee/", + "https://giphy.com/gifs/protest-milwaukee-blm-IzjGA5w04kTJTeP7Dz/fullscreen", + "https://www.google.ca/maps/place/N+6th+St+%26+W+Vliet+St,+Milwaukee,+WI+53205,+USA/@43.0483922,-87.9188126,3a,75y,1.17h,90t/data=" + ], + "state":"Wisconsin", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Wisconsin.md", + "city":"Milwaukee", + "name":"Police restrain man using knee on neck", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"wi-milwaukee-1" + }, + { + "links":[ + "https://youtu.be/XAa5xb6JitI?t=5982", + "https://gfycat.com/distinctsecretgrasshopper-minneapolis-protest-police-acab" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police hit press in neck and head with wooden baton", + "date":"2020-05-26", + "date_text":"May 26th", + "id":"mn-minneapolis-22" + }, + { + "links":[ + "https://www.facebook.com/1462345700/posts/10220863688809651" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police shoot flashbang grenades into crowd", + "date":"2020-05-26", + "date_text":"believed to be May 26th or 27th", + "id":"mn-minneapolis-14" + }, + { + "links":[ + "https://twitter.com/MichaelAdams317/status/1266945268567678976", + "https://twitter.com/rsdaza/status/1267200011659554824", + "https://twitter.com/MichaelAdams317/status/1267203751913422849", + "https://www.vice.com/en_us/article/y3zd7g/i-told-riot-cops-im-a-journalist-they-forced-me-to-the-ground-and-pepper-sprayed-me-in-the-face" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police storm gas station, attacking reporters who show press badges", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mn-minneapolis-1" + }, + { + "links":[ + "https://youtu.be/46qWpv-yFE8?t=268" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Continuation of gas station event; Awaijane family told to go inside gas station, they comply and seek shelter inside, police then shoot rubber bullets and tear gas inside the building", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mn-minneapolis-21" + }, + { + "links":[ + "https://www.youtube.com/watch?v=O3qj4cfsd7g", + "https://twitter.com/stribrooks/status/1266186985041022976" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police drive by spraying", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mn-minneapolis-3" + }, + { + "links":[ + "https://www.youtube.com/watch?v=aNuzzVpDZTY" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"CNN Reporter arrested", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mn-minneapolis-4" + }, + { + "links":[ + "https://www.youtube.com/watch?v=wmpic2NU1RM&feature=youtu.be" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"WCCO photojournalist arrested", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mn-minneapolis-5" + }, + { + "links":[ + "https://mobile.twitter.com/chadloder/status/1266962631887224837" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"CNN crew shot at with rubber bullets and tear gas while live on air", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mn-minneapolis-15" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1267118696960528386" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police shoot rubber bullets and teargas at an MSNBC reporter", + "date":"2020-05-30", + "date_text":"believed to be May 30th", + "id":"mn-minneapolis-16" + }, + { + "links":[ + "https://www.srf.ch/play/tv/news-clip/video/schweizer-journalisten-werden-mit-gummischrot-attackiert?id=67d44dd8-f16e-4db0-b690-799ab827956a&startTime=9", + "https://www.srf.ch/news/international/pressefreiheit-unter-beschuss-schweizer-journalisten-in-den-usa-von-polizei-attackiert", + "https://www.swissinfo.ch/eng/minneapolis-protests-_rubber-bullets-shot-at-swiss-journalists-by-us-police-/45808806" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Swiss journalists shot at with rubber bullets by police", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"mn-minneapolis-17" + }, + { + "links":[ + "https://twitter.com/tkerssen/status/1266921821653385225" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police shoot at a woman on her porch", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-2" + }, + { + "links":[ + "https://mobile.twitter.com/mollyhf/status/1266911382613692422", + "https://www.latimes.com/world-nation/story/2020-05-30/la-reporter-tear-gas-police" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"LA-Times employee recounts getting shot", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-6" + }, + { + "links":[ + "https://twitter.com/JaredGoyette/status/1266961243476299778" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Reporter shares his experience", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-7" + }, + { + "links":[ + "https://www.motherjones.com/anti-racism-police-protest/2020/06/videos-show-cops-slashing-car-tires-at-protests-in-minneapolis/", + "https://youtu.be/sP7hM_sdpkQ?t=4209", + "https://twitter.com/val_ebertz/status/1266975058230235137", + "https://twitter.com/andrewkimmel/status/1266987126467461120?s=20", + "https://twitter.com/andrewkimmel/status/1267012840197586946?s=20", + "https://lawandcrime.com/george-floyd-death/strategically-deflated-authorities-admit-to-slashing-tires-on-cars-belonging-to-protesters-and-journalists-in-minneapolis/" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police slashes tires", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-8" + }, + { + "links":[ + "https://mobile.twitter.com/chadloder/status/1266971884001693696", + "https://twitter.com/MikeGeorgeCBS/status/1266916104951214080" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"CBS news crew shot with rubber bullets", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-9" + }, + { + "links":[ + "https://twitter.com/atrupar/status/1266910910137995264" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police throw flashbangs at reporter", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-10" + }, + { + "links":[ + "https://mobile.twitter.com/KillerMartinis/status/1266618525600399361?s=19" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police blind a reporter with rubber bullet", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-11" + }, + { + "links":[ + "https://www.reuters.com/article/us-minneapolis-police-protest-update/reuters-cameraman-hit-by-rubber-bullets-as-police-disperse-protesters-idUSKBN237050" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police shoot Reuters reporters with rubber bullets", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-12" + }, + { + "links":[ + "https://www.youtube.com/watch?v=NN8ISwuiX68" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police shoot at, threaten to arrest reporter", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-13" + }, + { + "links":[ + "https://twitter.com/keycodez/status/1267235529311113216/video/1" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Police stop SUV to driveby pepperspray protesters through window", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-18" + }, + { + "links":[ + "https://mobile.twitter.com/chadloder/status/1266957030285127687" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Patient care assistant reports being shot with rubber bullets while treating injured protestors", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-19" + }, + { + "links":[ + "https://twitter.com/edouphoto/status/1267958349477249024", + "https://www.facebook.com/356074941105769/posts/3020200918026478/" + ], + "state":"Minnesota", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Minnesota.md", + "city":"Minneapolis", + "name":"Journalists pepper sprayed and hit with flashbangs and batons", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"mn-minneapolis-20" + }, + { + "links":[ + "https://twitter.com/AngelaMWilhelm/status/1268056986102444033", + "https://twitter.com/AngelaMWilhelm/status/1267974081577717762", + "https://twitter.com/daveth89/status/1267974555332685824", + "https://i.redd.it/wofh339sqr251.png" + ], + "state":"North Carolina", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/North Carolina.md", + "city":"Asheville", + "name":"Police surround approved medical station and destroy supplies", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"nc-asheville-1" + }, + { + "links":[ + "https://www.instagram.com/tv/CA9UOKAj7MC/" + ], + "state":"North Carolina", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/North Carolina.md", + "city":"Charlotte", + "name":"Law enforcement close on protesters from both sides with pepper bullets, tear gas, and flashbangs", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"nc-charlotte-1" + }, + { + "links":[ + "https://www.instagram.com/p/CA51AJxH7S9", + "https://www.newsobserver.com/news/local/article243202416.html", + "https://www.google.ca/maps/place/Ruby+Deluxe/@35.7751916,-78.6399548,3a,75y,200h,110t/data=" + ], + "state":"North Carolina", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/North Carolina.md", + "city":"Raleigh", + "name":"Police shoot to intimidate owner of LGBTQ bar", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"nc-raleigh-1" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1266745200656990208", + "https://twitter.com/_isabel_a/status/1266580681251000321" + ], + "state":"Indiana", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", + "city":"Fort Wayne", + "name":"Police pepper spray protesters attempting to record them", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"in-fortwayne-1" + }, + { + "links":[ + "https://twitter.com/blazedyukhei/status/1266533569029177346" + ], + "state":"Indiana", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", + "city":"Fort Wayne", + "name":"Police tear gas peaceful protesters", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"in-fortwayne-2" + }, + { + "links":[ + "https://wpta21.com/2020/05/31/toddler-tear-gassed-photo-goes-viral/#.XtUVqwf8OnF.facebook" + ], + "state":"Indiana", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", + "city":"Fort Wayne", + "name":"Toddler teargassed by police", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"in-fortwayne-3" + }, + { + "links":[ + "https://i.redd.it/4qzvp2gd54251.jpg", + "https://twitter.com/notbalin/status/1266972999296704513", + "https://mobile.twitter.com/chadloder/status/1267279165230743553/photo/2" + ], + "state":"Indiana", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", + "city":"Fort Wayne", + "name":"Protester hit in the face with a gas cannister", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"in-fortwayne-4" + }, + { + "links":[ + "https://www.facebook.com/AlexandraIndy/videos/10219444419838711" + ], + "state":"Indiana", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", + "city":"Indianapolis", + "name":"Police confiscate medical supplies from medical station", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"in-indianapolis-1" + }, + { + "links":[ + "https://www.washingtonpost.com/national/protests-police-brutality-video/2020/06/05/a9e66568-a768-11ea-b473-04905b1af82b_story.html", + "https://www.reddit.com/r/PublicFreakout/comments/guffju/indianapolis_police_on_women_rights/", + "https://twitter.com/greg_doucette/status/1268391718086422528" + ], + "state":"Indiana", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", + "city":"Indianapolis", + "name":"Police beat woman with batons and shoot pepper balls, shove another to the ground", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"in-indianapolis-2" + }, + { + "links":[ + "https://www.facebook.com/ctchoula/videos/10163707272210302/", + "https://scontent-ort2-2.xx.fbcdn.net/v/t1.0-9/101254362_755196441884833_7192544661301362688_n.jpg?_nc_cat=103&_nc_sid=110474&_nc_ohc=wjDZM1x0RLYAX9sKPft&_nc_ht=scontent-ort2-2.xx&oh=606a9dbf10d30a680c5dcb2c8ae8d7ce&oe=5EFD314B" + ], + "state":"Indiana", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Indiana.md", + "city":"Lafayette", + "name":"Officer drops tear gas into peaceful protest without warning", + "date":"2020-05-31", + "date_text":"Possibly May 31st", + "id":"in-lafayette-1" + }, + { + "links":[ + "https://www.reddit.com/r/Eugene/comments/gurr9r/police_shoot_projectile_from_moving_vehicle_hit/", + "https://streamable.com/9h2tk3" + ], + "state":"Oregon", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", + "city":"Eugene", + "name":"Officer shoots projectile from moving vehicle", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"or-eugene-1" + }, + { + "links":[ + "https://twitter.com/IwriteOK/status/1266907719635632129", + "https://twitter.com/MrOlmos/status/1266916861267996673" + ], + "state":"Oregon", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", + "city":"Portland", + "name":"Police violently break up peaceful protest", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"or-portland-1" + }, + { + "links":[ + "https://www.youtube.com/watch?v=01oWE24O9Zw&feature=emb_title" + ], + "state":"Oregon", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", + "city":"Portland", + "name":"Officer pepper-sprays protestor", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"or-portland-2" + }, + { + "links":[ + "https://twitter.com/AstuteAF/status/1268125169890938882" + ], + "state":"Oregon", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", + "city":"Portland", + "name":"Police appear to tear-gas a homeless camp", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"or-portland-3" + }, + { + "links":[ + "https://twitter.com/matcha_chai/status/1268043556913987584" + ], + "state":"Oregon", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", + "city":"Portland", + "name":"Police deploy shoot teargas/flashbang grenade into a crowd", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"or-portland-4" + }, + { + "links":[ + "https://twitter.com/MrAndyNgo/status/1268224547272003585" + ], + "state":"Oregon", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", + "city":"Portland", + "name":"Police launch teargas into a crowd", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"or-portland-5" + }, + { + "links":[ + "https://twitter.com/chadloder/status/1269526243138928642", + "https://twitter.com/TVAyyyy/status/1269526590456643584", + "https://twitter.com/DonovanFarley/status/1269701897377603584" + ], + "state":"Oregon", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Oregon.md", + "city":"Portland", + "name":"Officer attacks photographer with baton and pepper sprays him", + "date":"2020-06-06", + "date_text":"June 6th", + "id":"or-portland-6" + }, + { + "links":[ + "https://twitter.com/RimeAndTreason/status/1267268090351489024" + ], + "state":"Massachusetts", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", + "city":"Boston", + "name":"Police beat an innocent man crossing the street with batons.", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ma-boston-1" + }, + { + "links":[ + "https://www.youtube.com/watch?v=egvPF75vWOA" + ], + "state":"Massachusetts", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", + "city":"Boston", + "name":"A cop takes someone's protest sign and destroys it.", + "date":"", + "date_text":"Unknown Date", + "id":"ma-boston-2" + }, + { + "links":[ + "https://twitter.com/sebishop99/status/1267877928391659521/photo/1" + ], + "state":"Massachusetts", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", + "city":"Worcester", + "name":"Worcester police officers cover badge numbers during protest", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ma-worcester-1" + }, + { + "links":[ + "https://twitter.com/sebishop99/status/1267890659484143616", + "https://twitter.com/sebishop99/status/1267905527390113798", + "https://streamable.com/lqxq76", + "https://twitter.com/sebishop99/status/1267911837808496646" + ], + "state":"Massachusetts", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", + "city":"Worcester", + "name":"Riot police throw protestor to the ground", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ma-worcester-2" + }, + { + "links":[ + "https://twitter.com/sebishop99/status/1267913459938844673" + ], + "state":"Massachusetts", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", + "city":"Worcester", + "name":"Riot police fire on protestors without provocation", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ma-worcester-3" + }, + { + "links":[ + "https://twitter.com/sebishop99/status/1267948306182922245", + "https://twitter.com/sebishop99/status/1267950415443787777", + "https://twitter.com/sebishop99/status/1267968189675253760" + ], + "state":"Massachusetts", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Massachusetts.md", + "city":"Worcester", + "name":"Numerous eyewitness report being tackled by police officers", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"ma-worcester-4" + }, + { + "links":[ + "https://twitter.com/kodyfishertv/status/1266901735198638082" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Cincinnati", + "name":"Police disperse peaceful protest with tear gas, flash bangs and pepper bullets", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"oh-cincinnati-1" + }, + { + "links":[ + "https://touch.facebook.com/story.php?story_fbid=10157718199384132&id=697759131&ref=bookmarks" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Cincinnati", + "name":"First hand account of police violently dispersing crowds", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"oh-cincinnati-2" + }, + { + "links":[ + "https://twitter.com/nswartsell/status/1267612155840528385" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Cincinnati", + "name":"Police arrest reporter and force him to ground, grab another reporter", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"oh-cincinnati-3" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1267114065819770880" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Cleveland", + "name":"Officer swings baton at protesters, beats one who is trying to keep crowd back", + "date":"2020-05-30", + "date_text":"believed to be May 30th", + "id":"oh-cleveland-1" + }, + { + "links":[ + "https://twitter.com/rachelscotton/status/1266840734906318848" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Cleveland", + "name":"Police fire tear gas at peaceful protest", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"oh-cleveland-2" + }, + { + "links":[ + "https://www.facebook.com/story.php?story_fbid=1137997739900780&id=100010716946743" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Cop hits a protestor in the face, escalates to whole crowd being pepper sprayed", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"oh-columbus-1" + }, + { + "links":[ + "https://www.cnn.com/2020/05/30/politics/joyce-beatty-ohio-pepper-sprayed-columbus-protest/index.html", + "https://twitter.com/politico/status/1266866982919516160", + "https://twitter.com/TimWCBD/status/1266787064735043591", + "https://twitter.com/KRobPhoto/status/1266796191469252610" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Congresswoman Joyce Beatty reportedly sprayed with \"mace or pepper spray\"", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"oh-columbus-2" + }, + { + "links":[ + "https://twitter.com/rottenstrwbry/status/1266805467990446081" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Peaceful protester sprayed in the face with mace", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"oh-columbus-3" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1266878189537824772" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Police pepperspray protesters for chanting", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"oh-columbus-4" + }, + { + "links":[ + "https://pressfreedomtracker.us/all-incidents/student-journalist-chased-pepper-sprayed-during-protests-columbus/", + "https://twitter.com/julialwashere/status/1266730657436315649" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Officer chases reporter and pepper sprays her", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"oh-columbus-15" + }, + { + "links":[ + "https://twitter.com/Katy38105157/status/1266816739444166656", + "https://twitter.com/SAColumbus/status/1266867613872857094" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Police pepper-spray a medic", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"oh-columbus-5" + }, + { + "links":[ + "https://twitter.com/lalaitskelcey2/status/1266821476122058752", + "https://twitter.com/MarioLeUgly/status/1266933807929798656" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Police mace an innocent woman", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"oh-columbus-6" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gtq7i4/columbus_police_officer_trying_to_use_his_car_to/" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Police intimidating campus protesters by driving car towards them", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"oh-columbus-7" + }, + { + "links":[ + "https://twitter.com/DabinDhillo/status/1266892095702392832", + "https://twitter.com/taesvangogh/status/1266907922308558848" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Police pepper spray two kneeling protesters", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"oh-columbus-8" + }, + { + "links":[ + "https://i.redd.it/4ix8f3j6dy151.jpg", + "https://old.reddit.com/r/Columbus/comments/gtk192/photographer_being_pepper_sprayed_by_police/", + "https://www.instagram.com/p/CA03DsTByLn/" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Police pepper spray African-American photographer", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"oh-columbus-9" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1267102580070592512" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Police pepperspray sitting protesters", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"oh-columbus-10" + }, + { + "links":[ + "https://mobile.twitter.com/chadloder/status/1267113315613806592", + "https://twitter.com/greg_doucette/status/1267122343454953472" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Woman holding a sign is shot with rubber bullets", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"oh-columbus-11" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gusqeg/video_from_inside_the_concrete_courtyard_peaceful/?utm_source=share&utm_medium=ios_app&utm_name=iossmf", + "https://i.imgur.com/mECPaWe.jpg" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Protestors kept in a courtyard with no bathroom breaks, water, or food, for nine hours", + "date":"2020-05-31", + "date_text":"May 31st-June 1st", + "id":"oh-columbus-12" + }, + { + "links":[ + "https://www.thelantern.com/2020/06/columbus-mayor-police-chief-address-protest-policing-pepper-spray-of-lantern-journalists/", + "https://twitter.com/TheLantern/status/1267644471317090305", + "https://twitter.com/maevewalsh27/status/1267646128289447939" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Police push and pepper spray reporters from The Lantern newspaper", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"oh-columbus-13" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gvte8e/cop_refuses_to_give_diabetic_woman_her_insulin/", + "https://www.tiktok.com/@zestaz/video/6833912697436867845", + "https://www.tiktok.com/@zestaz/video/6833913925231185158" + ], + "state":"Ohio", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Ohio.md", + "city":"Columbus", + "name":"Officer refuses to give diabetic arrestee her insulin back", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"oh-columbus-14" + }, + { + "links":[ + "https://gfycat.com/tautimaginativedore" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Austin", + "name":"Police assault protesters", + "date":"2020-05-30", + "date_text":"(believed to be) May 30th", + "id":"tx-austin-2" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/guwc4y/austin_tx_nonviolent_protestor_shot_in_the_head/", + "https://www.instagram.com/p/CA6TCIGnuWm/", + "https://www.youtube.com/watch?v=-BGyTi-KdKc", + "https://streamable.com/o1uqgy", + "https://cbsaustin.com/news/local/austin-teen-hospitalized-with-head-injury-after-police-shoot-him-with-bean-bags-at-protest" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Austin", + "name":"Police shoot non-violent protestor in the head", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"tx-austin-3" + }, + { + "links":[ + "https://twitter.com/highsettler/status/1266876480929349633", + "https://imgur.com/gallery/VKuIIvu", + "https://gfycat.com/weirdthankfulgnatcatcher" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Austin", + "name":"Police use tear gas & rubber bullets on protesters", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"tx-austin-4" + }, + { + "links":[ + "https://twitter.com/ironfront7/status/1267133400156196870" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Austin", + "name":"Police open fire on crowd with rubber bullets", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"tx-austin-5" + }, + { + "links":[ + "https://www.reddit.com/r/Bad_Cop_No_Donut/comments/gwd37n/a_black_20yearold_student_justin_howell_is_in/", + "https://www.texastribune.org/2020/06/01/austin-police-george-floyd-mike-ramos/", + "https://www.kvue.com/article/news/local/austin-protester-police-struck-by-less-lethal-bean-bag-round/269-430f90a2-b6c1-4ee3-9d9c-639faf132100", + "https://www.cnn.com/2020/06/07/us/austin-texas-police-bean-bag-20-year-old-injured/index.html" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Austin", + "name":"Police critically injure 20 year old black protester during protests against police violence", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"tx-austin-1" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gwfu8e/apd_gets_water_splashed_on_them_and_immediately/", + "https://tuckbot.tv/#/watch/gwfu8e", + "https://peertube.live/videos/watch/320ea302-9806-44c0-843e-49d8486c423f" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Austin", + "name":"Police open fire on crowd after a protester throws water on them", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"tx-austin-6" + }, + { + "links":[ + "https://old.reddit.com/r/Bad_Cop_No_Donut/comments/guhgfq/please_let_others_see_this_this_guy_did_not/", + "https://twitter.com/Grits4Breakfast/status/1267128210455588865" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Austin", + "name":"Police spray a man in the face while he stands still ~3 feet away from them.", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"tx-austin-7" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gvjjwg/volunteer_medics_advised_by_police_to_bring_a/", + "https://www.reddit.com/r/PublicFreakout/comments/gwbbjs/protestor_is_shot_in_head_with_rubber_bullet/", + "http://www.thebatt.com/opinion/opinion-his-name-is-justin-howell/article_93a79c44-a5b6-11ea-aa54-ebc0da33cc35.html?fbclid=IwAR11FqXr9dRCKo-ohfeBoO9FdYFRG2uon0nqAkxKO5gZuL_-4EzgukAGcBs" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Austin", + "name":"Police fire upon protesters seeking medical help", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"tx-austin-8" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gw2dpw/cop_in_baytown_tx_pulls_over_black_man_white_man/", + "https://www.facebook.com/isaiah.benavides.94/videos/2811815772219886/" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Baytown", + "name":"Police officer tackles and knees man on the ground", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"tx-baytown-1" + }, + { + "links":[ + "https://twitter.com/KevinRKrause/status/1266898396339675137", + "https://i.redd.it/ns0uj557x0251.jpg", + "https://twitter.com/greg_doucette/status/1267109272342736896" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Dallas", + "name":"Police shoot unarmed woman in the face with a rubber bullet", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"tx-dallas-1" + }, + { + "links":[ + "https://twitter.com/HERCGTH/status/1266870616570900480", + "https://www.wfaa.com/article/news/local/dallas-county/dallas-police-investigating-possible-use-of-force-incidents-saturday/287-1d3851d2-656c-4d40-8eac-7deac44ddf2d" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Dallas", + "name":"Man shot in the eye", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"tx-dallas-4" + }, + { + "links":[ + "https://twitter.com/xtranai/status/1266898175568338945" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Dallas", + "name":"Police use flashbangs and tear gas on protestors", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"tx-dallas-2" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gx9a5n/these_protests_took_place_on_june_2nd_in_dallas/", + "https://www.google.com/maps/place/Margaret+Hunt+Hill+Bridge,+Dallas,+TX,+USA/@32.781075,-96.8186896,15z/data=" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Dallas", + "name":"Police maneuver protestors onto bridge and fire tear gas and rubber bullets", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"tx-dallas-3" + }, + { + "links":[ + "https://twitter.com/vikthewild/status/1266538354939756544", + "https://abc13.com/hpd-uns-over-girl-police-on-horse-tramples-protester-george-floyd/6223240/" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Houston", + "name":"Police trample protester with horse", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"tx-houston-1" + }, + { + "links":[ + "https://twitter.com/AbkTrauma/status/1266511972524269569" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Houston", + "name":"Officers shove a woman to the pavement", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"tx-houston-2" + }, + { + "links":[ + "https://twitter.com/DomSkyeRN/status/1270185401060294656" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"Houston", + "name":"Officer pushs protestor that is filming", + "date":"", + "date_text":"Date Unknown", + "id":"tx-houston-3" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/gu3s6j/police_shoots_protestor_for_no_reason/", + "https://tuckbot.tv/#/watch/gu3s6j" + ], + "state":"Texas", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Texas.md", + "city":"San Antonio", + "name":"Police shoot man filming them with what were allegedly rubber bullets", + "date":"2020-05-31", + "date_text":"(believed to be) May 31st", + "id":"tx-sanantonio-2" + }, + { + "links":[ + "https://twitter.com/XruthxNthr/status/1266903223220097024" + ], + "state":"Nebraska", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Nebraska.md", + "city":"Omaha", + "name":"Police Mace, shoot pepper bullets at protesters sitting on the ground", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"ne-omaha-1" + }, + { + "links":[ + "https://twitter.com/reecereports/status/1267629669093978117" + ], + "state":"Nebraska", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Nebraska.md", + "city":"Omaha", + "name":"Peaceful protestors arrested for breaking curfew", + "date":"2020-06-01", + "date_text":"June 1", + "id":"ne-omaha-2" + }, + { + "links":[ + "https://twitter.com/AleemMaqbool/status/1267319521486004225?s=20", + "https://www.bbc.co.uk/news/av/world-us-canada-52884888/george-floyd-protests-police-charge-at-bbc-cameraman-near-white-house" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Riot Police rams shield into BBC cameraman", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"dc-dc-1" + }, + { + "links":[ + "https://twitter.com/i/status/1267298316141899780", + "https://twitter.com/i/status/1267283580474085378" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Police tear gas protesters outside of Lafayette Square", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"dc-dc-11" + }, + { + "links":[ + "https://7news.com.au/sunrise/on-the-show/scary-moment-as-sunrise-reporter-caught-up-in-us-violence-c-1073136", + "https://www.abc.net.au/news/2020-06-02/channel-7-journalists-assaulted-police-george-floyd-protesters/12312056", + "https://twitter.com/ASB_Breaking/status/1267596043870486528", + "https://twitter.com/i/status/1267597024096137217", + "https://twitter.com/i/status/1267606685767667712", + "https://v.redd.it/qf9vf0hdrd251", + "https://peertube.live/videos/watch/1713b881-a750-45a0-9c6c-f066ebcac484", + "https://www.reddit.com/r/2020PoliceBrutality/comments/gvqjjv/nsfl_clearer_footage_of_guy_hit_by_shield_blood/" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Australian news crew and protestors attacked by police", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"dc-dc-2" + }, + { + "links":[ + "https://www.nytimes.com/2020/06/02/us/politics/trump-walk-lafayette-square.html", + "https://www.cnn.com/2020/06/02/politics/trump-white-house-protest-police-church-photo-op/index.html", + "https://www.wusa9.com/article/news/local/dc/lafayette-square-washington-dc-protests-st-johns-church/65-f76d9753-8d99-42df-b02d-99d11a427595", + "https://www.reddit.com/r/2020PoliceBrutality/comments/gvpqoz/nsfl_hit_by_riot_shield_blood_gushes_out_of_guys/", + "https://www.reddit.com/r/2020PoliceBrutality/comments/gvpgpz/found_both_videos_of_the_dc_event_i_know_people/", + "https://twitter.com/nytimes/status/1267638330654625794" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Protestors are quickly and violently pushed out of Lafayette Square", + "date":"2020-06-01", + "date_text":"June 1", + "id":"dc-dc-3" + }, + { + "links":[ + "https://mobile.twitter.com/chadloder/status/1267377374066167808" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Officer fires tear gas cannister at protestor's head", + "date":"", + "date_text":"", + "id":"dc-dc-4" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/guvwgo/trump_gives_a_speech_about_protecting_peaceful/?utm_source=share&utm_medium=ios_app&utm_name=iossmf" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Police violence outside the White House", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"dc-dc-5" + }, + { + "links":[ + "https://twitter.com/suckmyunicornD/status/1267767217392934917", + "https://dcist.com/story/20/06/02/dupont-dc-home-protest-rahul-dubey/" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Man who sheltered protestors discusses law enforcement officers shooting tear gas into his house", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"dc-dc-6" + }, + { + "links":[ + "https://twitter.com/WestofHereFox/status/1267615709791731713" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Police charge peaceful crowd, beat them with shields", + "date":"", + "date_text":"", + "id":"dc-dc-7" + }, + { + "links":[ + "https://twitter.com/i/status/1269859559859871744" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Police fire into crowd hitting one protester", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"dc-dc-8" + }, + { + "links":[ + "https://twitter.com/MarkIronsMedia/status/1268046417865715713", + "https://twitter.com/MarkIronsMedia/status/1268062053182443522", + "https://twitter.com/gifdsports/status/1268041853196275712" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Law enforcement officers fire rubber bullets into crowd, pepper-spray kneeling protestor and CNN crew", + "date":"2020-06-03", + "date_text":"June 3", + "id":"dc-dc-9" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1268297598856765441", + "https://twitter.com/greg_doucette/status/1268297598856765441" + ], + "state":"Washington DC", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Washington DC.md", + "city":"DC", + "name":"Law enforcement officers throw stinger grenades at peaceful protestors", + "date":"2020-06-03", + "date_text":"June 3", + "id":"dc-dc-10" + }, + { + "links":[ + "https://twitter.com/ETfonehome97/status/1267657232411435008" + ], + "state":"Alabama", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", + "city":"Huntsville", + "name":"Protester falls and is stepped on", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"al-huntsville-1" + }, + { + "links":[ + "https://twitter.com/bitchthot420/status/1268350308398268416" + ], + "state":"Alabama", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", + "city":"Huntsville", + "name":"Police officer pepper sprays protestors for no reason", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"al-huntsville-2" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1268397070563414016" + ], + "state":"Alabama", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", + "city":"Huntsville", + "name":"Police tear gas reporters", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"al-huntsville-3" + }, + { + "links":[ + "https://www.alreporter.com/2020/06/03/huntsville-police-deploy-tear-gas-rubber-bullets-on-protesters/" + ], + "state":"Alabama", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", + "city":"Huntsville", + "name":"Police preemptively tear gas peaceful protestors", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"al-huntsville-4" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gyo2fh/huntsville_al_woman_documents_herself_struggling/" + ], + "state":"Alabama", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Alabama.md", + "city":"Huntsville", + "name":"Police fire rubber bullets on dispersing crowd", + "date":"2020-06-05", + "date_text":"Believed to be June 5th", + "id":"al-huntsville-5" + }, + { + "links":[ + "https://twitter.com/alyssa_taylor45/status/1266895002904539137?s=20" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Police pull down and assault a protestor", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"il-chicago-1" + }, + { + "links":[ + "https://twitter.com/LUVRGRLLANI/status/1266866301001179136" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Protester shot in head with rubber bullet", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"il-chicago-2" + }, + { + "links":[ + "https://twitter.com/JCB_Journo/status/1266897672545480706" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Police pepperspray reporter for recording", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"il-chicago-5" + }, + { + "links":[ + "https://old.reddit.com/r/PublicFreakout/comments/gtmbmh/cops_remove_badges_minutes_before_assault/" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Police remove badges", + "date":"2020-05-30", + "date_text":"(Believed to be) May 30th", + "id":"il-chicago-11" + }, + { + "links":[ + "https://twitter.com/johncusack/status/1266938983575101441" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Police harass and assault John Cusack", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"il-chicago-3" + }, + { + "links":[ + "https://twitter.com/cruzzzyc/status/1267185423333199874", + "https://twitter.com/AdrienneWrites/status/1267534983054254081", + "https://blockclubchicago.org/2020/06/03/black-women-pulled-from-car-kneeled-on-by-chicago-police-officers-outside-northwest-side-mall-i-was-scared-for-my-life/", + "https://chicago.cbslocal.com/2020/06/03/police-drag-women-out-of-car-outside-brickyard-mall-woman-says-officer-put-knee-on-neck/" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Police pull black women out of the car and throw them to the ground", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"il-chicago-4" + }, + { + "links":[ + "https://news.wttw.com/2020/06/05/police-board-president-officers-struck-me-5-times-their-batons-during-protest" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Cops hit Chicago Police Board President", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"il-chicago-6" + }, + { + "links":[ + "https://twitter.com/KyleWilkins/status/1267268393809387520/photo/1" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Officer covers badge", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"il-chicago-10" + }, + { + "links":[ + "https://twitter.com/CHICAGOCREATUR1/status/1268607315902697478", + "https://twitter.com/helllucinate/status/1267237866935136258", + "https://twitter.com/trashrascal/status/1268669040312147969" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Officers are missing badges", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"il-chicago-13" + }, + { + "links":[ + "https://www.youtube.com/watch?time_continue=44&v=_urY-W8otNA", + "https://chicago.suntimes.com/crime/2020/6/3/21279501/police-video-cpd-officer-punch-protester-uptown-investigation-copa" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Video showing CPD officer punching protester in Uptown under investigation", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"il-chicago-7" + }, + { + "links":[ + "https://twitter.com/BLMChi/status/1267486699321544704" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"CPD chase down protester on TV", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"il-chicago-8" + }, + { + "links":[ + "https://twitter.com/ChrisDitton/status/1267675836892708864" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Police grab protester and throw into brick wall", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"il-chicago-12" + }, + { + "links":[ + "https://twitter.com/TomSchuba/status/1268312957752160257" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Chicago", + "name":"Police hit several protesters with batons", + "date":"2020-06-03", + "date_text":"(Believed to be) June 3rd", + "id":"il-chicago-9" + }, + { + "links":[ + "https://www.youtube.com/watch?v=rllO2sdj1Ek", + "https://twitter.com/OrozcoJustina/status/1268262843801010179", + "https://www.chicagotribune.com/news/breaking/ct-joliet-mayor-video-fallout-20200606-zeidd3u5xbadxfoedmfkp22akm-story.html" + ], + "state":"Illinois", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Illinois.md", + "city":"Joliet", + "name":"Officers grabs someone by the neck then more cops pile on", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"il-joliet-1" + }, + { + "links":[ + "https://www.facebook.com/Shawn.R.Russ/videos/10221345617964005/", + "https://www.kktv.com/content/news/Colorado-Springs-police-issue-statement-following-use-of-force-arrest-during-protest-570969681.html" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Colorado Springs", + "name":"Multiple cops pin man to ground while repeatedly punching him", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"co-coloradosprings-1" + }, + { + "links":[ + "https://www.denverpost.com/2020/05/29/denver-post-photographer-pepper-balls-george-floyd-protest/" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Reporter shot with multiple pepper balls", + "date":"2020-05-28", + "date_text":"May 28th", + "id":"co-denver-1" + }, + { + "links":[ + "https://twitter.com/greg_doucette/status/1266758227930333188", + "https://twitter.com/Dizzle14Double/status/1266615473816260609", + "https://twitter.com/SaltMagazine_/status/1266634027257098240" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Police pepperspray people trying to record", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"co-denver-2" + }, + { + "links":[ + "https://twitter.com/AdiGTV/status/1266554320717099008" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Denver law enforcement shoot at reporters", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"co-denver-3" + }, + { + "links":[ + "https://twitter.com/DoughertyKMGH/status/1266560264918491138/video/1" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Denver SWAT shoot at woman trying to stop armored car", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"co-denver-4" + }, + { + "links":[ + "https://www.reddit.com/r/Denver/comments/gslcxb/the_moment_the_cops_tear_gassed_the_protesters_at/" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Police discharge tear gas into group of protesters", + "date":"2020-05-29", + "date_text":"May 29th", + "id":"co-denver-13" + }, + { + "links":[ + "https://twitter.com/tessrmalle/status/1266945413258653696", + "https://www.reddit.com/r/2020PoliceBrutality/comments/gunfut/denver_officer_pushed_a_photographer_into_a_fire/", + "https://www.youtube.com/watch?v=zhIWohJsRyM&feature=youtu.be&t=4225" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Police throw reporter into fire", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"co-denver-5" + }, + { + "links":[ + "https://twitter.com/moneyroe99/status/1266956171409346566" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Police tear gas and shoot protestors", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"co-denver-6" + }, + { + "links":[ + "https://youtu.be/xNLZ7exVxq4?t=110" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Denver law enforcement shoot at reporter standing on the sidewalk", + "date":"2020-05-30", + "date_text":"May 30th", + "id":"co-denver-7" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gumff6/denver_police_fire_pepper_balls_at_a_car_with_a/" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Police fire pepper balls at car with pregnant woman", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"co-denver-8" + }, + { + "links":[ + "https://twitter.com/heyydnae/status/1267139396278661121?s=21" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Police officer fires at protestor while driving away", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"co-denver-9" + }, + { + "links":[ + "https://www.reddit.com/r/2020PoliceBrutality/comments/gvhisl/police_rip_sign_out_of_peaceful_protesters_hands/", + "https://www.tiktok.com/@yazzdazzz/video/6832896487207243014" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Police pepper sprays peaceful protestor and fires tear gas on crowd", + "date":"2020-05-31", + "date_text":"Believed to be May 31st or June 1st", + "id":"co-denver-10" + }, + { + "links":[ + "https://www.reddit.com/r/Denver/comments/gvhqs2/elisabeth_epps_use_of_force_committee_member_for/" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Police shoot protester from behind with tear gas canister", + "date":"2020-06-02", + "date_text":"June 2nd", + "id":"co-denver-11" + }, + { + "links":[ + "https://www.reddit.com/r/Denver/comments/gwdg85/denver_swat_unit_tackles_group_of_peaceful/" + ], + "state":"Colorado", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Colorado.md", + "city":"Denver", + "name":"Police tackle group of peaceful protesters", + "date":"2020-06-04", + "date_text":"June 4th", + "id":"co-denver-12" + }, + { + "links":[ + "https://ktla.com/news/nationworld/a-virginia-police-officer-faces-charges-for-use-of-stun-gun-on-a-black-man/", + "https://forthuntherald.com/mount-vernon-police-officer-who-forcefully-apprehended-a-black-man-charged-with-assault-battery/", + "https://www.youtube.com/watch?v=MjFEDlTCKGE", + "https://www.washingtonpost.com/local/public-safety/fairfax-county-police-officer-charged-after-using-stun-gun-on-black-man-without-provocation-police-say/2020/06/07/4e7b4a90-a858-11ea-b619-3f9133bbb482_story.html" + ], + "state":"Virginia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", + "city":"Fairfax", + "name":"Officer repeatedly uses stun gun on suspect who said he couldn't breathe", + "date":"2020-06-05", + "date_text":"June 5th", + "id":"va-fairfax-1" + }, + { + "links":[ + "https://twitter.com/tristanshields/status/1266994214878932993" + ], + "state":"Virginia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", + "city":"Manassas", + "name":"Officers pepper-spray Virginia state delegate peacefully protesting", + "date":"", + "date_text":"", + "id":"va-manassas-1" + }, + { + "links":[ + "https://www.reddit.com/r/rva/comments/gtwdzi/someone_got_pepper_sprayed_from_his_second_floor/", + "https://twitter.com/ADeliciousBear/status/1268048506247405568", + "https://m.facebook.com/story.php?story_fbid=1123349158037544&id=100010874104187" + ], + "state":"Virginia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", + "city":"Richmond", + "name":"Officer sprays a man watching from his balcony", + "date":"2020-05-31", + "date_text":"May 31st", + "id":"va-richmond-1" + }, + { + "links":[ + "https://twitter.com/i/status/1267650345947271176", + "https://twitter.com/i/status/1267613150112858116", + "https://twitter.com/i/status/1267601158534815745", + "https://twitter.com/LVozzella/status/1267603037532704769", + "https://twitter.com/myVPM/status/1267605983641075712", + "https://www.youtube.com/watch?v=LG_HMghyQZc" + ], + "state":"Virginia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", + "city":"Richmond", + "name":"Tear gas fired at peaceful protest", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"va-richmond-2" + }, + { + "links":[ + "https://www.reddit.com/r/PublicFreakout/comments/guzgf9/police_officer_in_richmond_va_spits_on_and_near_a/" + ], + "state":"Virginia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", + "city":"Richmond", + "name":"Officer spits on detained protestor", + "date":"2020-06-01", + "date_text":"June 1st", + "id":"va-richmond-3" + }, + { + "links":[ + "https://twitter.com/BeQueerDoCrime/status/1268648919623442432" + ], + "state":"Virginia", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Virginia.md", + "city":"Richmond", + "name":"Law enforcement officer fires tear gas at vehicle only to discover it's a police vehicle", + "date":"2020-06-04", + "date_text":"June 4th", + "id":"va-richmond-4" + }, + { + "links":[ + "https://twitter.com/misaacstein/status/1268381797081022464", + "https://twitter.com/ckm_news/status/1268382403367763970", + "https://twitter.com/brynstole/status/1268381340073971713", + "https://twitter.com/xxnthe/status/1268427759870775298" + ], + "state":"Louisiana", + "edit_at":"https://github.com/2020PB/police-brutality/blob/master/reports/Louisiana.md", + "city":"New Orleans", + "name":"Police throw tear-gas at protestors on a bridge.", + "date":"2020-06-03", + "date_text":"June 3rd", + "id":"la-neworleans-1" + } + ] + } \ No newline at end of file From c000022a3cee1eada097816762e668f3b1595e39 Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 20:02:09 -0400 Subject: [PATCH 07/32] [ADDED] issue templates for community requests --- .github/ISSUE_TEMPLATE/bug_report.md | 31 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 17 +++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..4226669 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,31 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug, help wanted, question +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Smartphone (please complete the following information):** + - Device: [e.g. Galaxy S9+] + - OS Version: [e.g. 9.0] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..dc82ecd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement, help wanted +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Additional context** +Add any other context or screenshots about the feature request here. From 30553716a1a0daf6c244184a84ad16cdee0d078f Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 21:22:03 -0400 Subject: [PATCH 08/32] =?UTF-8?q?[MINOR]=20Added=20not=20about=20google=20?= =?UTF-8?q?play=20and=20beta=20emoji=20=F0=9F=9A=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4602b6e..9b2d9df 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,13 @@ Android client app for https://github.com/2020PB/police-brutality (Repository co

-### Early BETA Testing +### Early BETA Testing 🚧 If you want to try the app as it is being developed, you can get the latest Android APK in 2 different ways: * GitHub Releases - See [current release](https://github.com/amardeshbd/android-police-brutality-incidents/releases) with APK bundled with it. * Firebase App Distribution - Subscribe to new updates via email. Use this [open-beta testing](https://appdistribution.firebase.dev/i/5d2cb8359305f7e7) process. The invite email will be sent on next release, not immediately. +> NOTE: App will be available in Google Play in few days after it's reviewed and approved. + ## Objective The objective of the app is to be front-end of the data that is collected and exposed by [police-brutality](https://github.com/2020PB/police-brutality) repository. From 2d650fe674c740acbbb3a7b5236973b806101f75 Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 21:39:41 -0400 Subject: [PATCH 09/32] [ADDED] #63 API data snapshot from api.846policebrutality.com --- resources/api-data-snapshot/README.md | 8 +- ...46policebrutality.com-2020.06.09-09pm.json | 6858 +++++++++++++++++ 2 files changed, 6865 insertions(+), 1 deletion(-) create mode 100644 resources/api-data-snapshot/incidents-api.846policebrutality.com-2020.06.09-09pm.json diff --git a/resources/api-data-snapshot/README.md b/resources/api-data-snapshot/README.md index 2af10f5..4d7cddd 100644 --- a/resources/api-data-snapshot/README.md +++ b/resources/api-data-snapshot/README.md @@ -1,4 +1,10 @@ # Snapshot API data snapshot for historical and analytical purpose. -See original repository for latest data - https://github.com/2020PB/police-brutality +See original repository for latest data: +* https://github.com/2020PB/police-brutality (source repository) +* https://github.com/949mac/846-backend (RESTful API repo that uses source repository) + +## Snapshot Location +* `2020PB/police-brutality` - https://raw.githubusercontent.com/2020PB/police-brutality/data_build/all-locations.json +* `949mac/846-backend` - https://api.846policebrutality.com/api/incidents \ No newline at end of file diff --git a/resources/api-data-snapshot/incidents-api.846policebrutality.com-2020.06.09-09pm.json b/resources/api-data-snapshot/incidents-api.846policebrutality.com-2020.06.09-09pm.json new file mode 100644 index 0000000..f580cc4 --- /dev/null +++ b/resources/api-data-snapshot/incidents-api.846policebrutality.com-2020.06.09-09pm.json @@ -0,0 +1,6858 @@ +{ + "data":[ + { + "id":"7b044f80-a9d6-11ea-823c-cb6b88d56860", + "pb_id":"ar-bentonville-1", + "state":"Arkansas", + "city":"Bentonville", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Law enforcement gas a crowd chanting \u201cwe want peace\u201d right after exiting the building.", + "description":null, + "links":[ + "https:\/\/twitter.com\/courtenay_roche\/status\/1267653137969623040", + "https:\/\/twitter.com\/yagirlbrookie09\/status\/1267647898365427714", + "https:\/\/www.4029tv.com\/article\/bentonville-police-deploy-tear-gas-on-protesters\/32736629#" + ], + "data":null, + "geocoding":{ + "lat":"36.3728538", + "long":"-94.2088172" + } + }, + { + "id":"7b052000-a9d6-11ea-a1aa-6dd6696efaec", + "pb_id":"ar-littlerock-2", + "state":"Arkansas", + "city":"Little Rock", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Peaceful protestors kneeling are shot with an explosive projectile.", + "description":null, + "links":[ + "https:\/\/twitter.com\/KATVShelby\/status\/1267554421019475972?s=20", + "https:\/\/twitter.com\/KATVNews\/status\/1267509911954440194" + ], + "data":null, + "geocoding":{ + "lat":"34.7464809", + "long":"-92.2895948" + } + }, + { + "id":"7b056090-a9d6-11ea-8244-c5cdc23a86b5", + "pb_id":"ut-saltlakecity-1", + "state":"Utah", + "city":"Salt Lake City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shove an old man with a cane to the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/bubbaprog\/status\/1266908354821206016" + ], + "data":null, + "geocoding":{ + "lat":"40.7607793", + "long":"-111.8910474" + } + }, + { + "id":"7b058500-a9d6-11ea-a052-4d4540bad5fe", + "pb_id":"ut-saltlakecity-2", + "state":"Utah", + "city":"Salt Lake City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shoot man on the ground in the spine with a beanbag point-blank", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/nextfuckinglevel\/comments\/gtv4co\/downtown_salt_lake_city_may_30th_2020_unarmed\/" + ], + "data":null, + "geocoding":{ + "lat":"40.7607793", + "long":"-111.8910474" + } + }, + { + "id":"7b05ac80-a9d6-11ea-a72a-db8cd82c4def", + "pb_id":"ut-saltlakecity-4", + "state":"Utah", + "city":"Salt Lake City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shoot tear gas canister at man from close range, striking him in the chest", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1268333029526843392", + "https:\/\/www.instagram.com\/p\/CA148-0B14t6mQZqJZYzwq25KdoPzZ5CJmV3oQ0\/" + ], + "data":null, + "geocoding":{ + "lat":"40.7607793", + "long":"-111.8910474" + } + }, + { + "id":"7b05e900-a9d6-11ea-9b46-5dca997586eb", + "pb_id":"ut-saltlakecity-3", + "state":"Utah", + "city":"Salt Lake City", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police push and tackle man that is being vocal", + "description":null, + "links":[ + "https:\/\/v.redd.it\/fl4y919v1q251" + ], + "data":null, + "geocoding":{ + "lat":"40.7607793", + "long":"-111.8910474" + } + }, + { + "id":"7b060ec0-a9d6-11ea-ab9b-7579ddf3de22", + "pb_id":"ca-clayton-1", + "state":"California", + "city":"Clayton", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Law enforcement gas teenagers at a park", + "description":null, + "links":[ + "https:\/\/twitter.com\/CorinneAllen20\/status\/1268000716884283393", + "https:\/\/twitter.com\/CliffBraun\/status\/1268038070667849728" + ], + "data":null, + "geocoding":{ + "lat":"37.9410341", + "long":"-121.9357925" + } + }, + { + "id":"7b064160-a9d6-11ea-9e99-6905b224cf2a", + "pb_id":"ca-compton-1", + "state":"California", + "city":"Compton", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police beat person on the ground", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gvdl01\/they_secluded_him_behind_a_wall_and_looked_around\/" + ], + "data":null, + "geocoding":{ + "lat":"33.8958492", + "long":"-118.2200712" + } + }, + { + "id":"7b066980-a9d6-11ea-bbb3-b75160deaf47", + "pb_id":"ca-costa-mesa-1", + "state":"California", + "city":"Costa Mesa", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Law enforcement concealing badge", + "description":null, + "links":[ + "https:\/\/old.reddit.com\/r\/orangecounty\/comments\/gvn42k\/oc_sheriff_deputy_forgoing_his_name_badge_to_wear\/" + ], + "data":null, + "geocoding":{ + "lat":"33.6638439", + "long":"-117.9047429" + } + }, + { + "id":"7b068de0-a9d6-11ea-84a8-8929e6f5ec2c", + "pb_id":"ca-hollywood-2", + "state":"California", + "city":"Hollywood", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Law enforcement arrest people walking, you can hear on the radio \u201cYou should not be driving past anybody, stop and take somebody into custody\u201d.", + "description":null, + "links":[ + "https:\/\/twitter.com\/AdoreDelano\/status\/1267688320735166465" + ], + "data":null, + "geocoding":{ + "lat":"34.0928092", + "long":"-118.3286614" + } + }, + { + "id":"7b06b730-a9d6-11ea-a7a6-211dc2660be9", + "pb_id":"ca-lamesa-4", + "state":"California", + "city":"La Mesa", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Law enforcement shoot and throw tear gas at protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/mamitbh\/status\/1267030342243778561" + ], + "data":null, + "geocoding":{ + "lat":"32.7678287", + "long":"-117.0230839" + } + }, + { + "id":"7b06dc70-a9d6-11ea-8f71-bbdfda674ec3", + "pb_id":"ca-lamesa-3", + "state":"California", + "city":"La Mesa", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot woman in the face", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/100010947670361\/videos\/1115087385532840", + "https:\/\/mobile.twitter.com\/MarajYikes\/status\/1267030131563827200", + "https:\/\/mobile.twitter.com\/chadloder\/status\/1267290221562871809\/photo\/1" + ], + "data":null, + "geocoding":{ + "lat":"32.7678287", + "long":"-117.0230839" + } + }, + { + "id":"7b072e80-a9d6-11ea-af95-e3d68ad16682", + "pb_id":"ca-longbeach-5", + "state":"California", + "city":"Long Beach", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Reporter shot in neck by rubber bullet", + "description":null, + "links":[ + "https:\/\/laist.com\/2020\/05\/31\/reporters_injured_protests_police.php", + "https:\/\/twitter.com\/AGuzmanLopez\/status\/1267269781805137920" + ], + "data":null, + "geocoding":{ + "lat":"33.7700504", + "long":"-118.1937395" + } + }, + { + "id":"7b076300-a9d6-11ea-96b7-ddd90d458da1", + "pb_id":"ca-losangeles-7", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police officer puts his knee on a protesters neck, is pulled off", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gturig\/cop_has_his_knee_on_a_womans_neck_even_though\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b078850-a9d6-11ea-b946-6309fc048a13", + "pb_id":"ca-losangeles-9", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Man shot in the head with deterrent rounds, is sent to hospital", + "description":null, + "links":[ + "https:\/\/twitter.com\/LowkeySinistra\/status\/1267109420955086848", + "https:\/\/twitter.com\/LowkeySinistra\/status\/1267871561714790401", + "https:\/\/www.foxnews.com\/media\/marine-corps-veteran-shot-with-rubber-bullets-by-police-at-protest-i-had-my-hands-up" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b07bf80-a9d6-11ea-a471-65739305b53f", + "pb_id":"ca-losangeles-10", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Los Angeles law enforcement beat protesters for no apparent reason.", + "description":null, + "links":[ + "https:\/\/twitter.com\/MattMcGorry\/status\/1267217360894562306", + "https:\/\/abc7.com\/6231194\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b07e1b0-a9d6-11ea-8080-ab89973bacef", + "pb_id":"ca-losangeles-11", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police tackle and arrest protester, indiscriminately beat others with batons and shoot them with less lethals", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1267095100166987778", + "https:\/\/twitter.com\/sleepydayhana\/status\/1266930544811671552" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b080330-a9d6-11ea-aace-7fd4b84dbdeb", + "pb_id":"ca-losangeles-12", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"LAPD SUV drives into protesters, speeds away", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1267277826354556928", + "https:\/\/twitter.com\/SophiaLeeHyun\/status\/1267216604388978689", + "https:\/\/twitter.com\/chadloder\/status\/1267314138428014594", + "https:\/\/v.redd.it\/9aiytt50g6251\/DASH_1080#mp4", + "https:\/\/old.reddit.com\/r\/PublicFreakout\/comments\/gu8mqp\/police_drives_into_protestors_in_los_angeles\/", + "https:\/\/old.reddit.com\/r\/gifs\/comments\/gu8inv\/la_cop_car_rams_protester_on_live_tv_chopper\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b082420-a9d6-11ea-89e4-a5213d4ed567", + "pb_id":"ca-losangeles-13", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Los Angeles law enforcement shot at a man on his own balcony", + "description":null, + "links":[ + "https:\/\/twitter.com\/cwellborn3\/status\/1267318753571811329" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b084740-a9d6-11ea-98e0-e91510a8870a", + "pb_id":"ca-losangeles-14", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police strike protestors with batons", + "description":null, + "links":[ + "https:\/\/streamable.com\/ja2fw6", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gv8vaw\/lapd_beating_and_shooting_peaceful_protesters_for\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b086810-a9d6-11ea-a1ca-6f0347754d8b", + "pb_id":"ca-losangeles-15", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police shoot rubber bullets at two peaceful protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/liveinochi\/status\/1267504585926557696", + "https:\/\/tikitoks.com\/@jacksonmonroe\/video\/6833397689187716358" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b08a7c0-a9d6-11ea-bc9f-456b5c522261", + "pb_id":"ca-losangeles-16", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot crowd of unarmed protestors with rubber bullets", + "description":null, + "links":[ + "https:\/\/www.tiktok.com\/@w17ard\/video\/6833082563913977093?lang=en" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b08d9a0-a9d6-11ea-981a-797a5f409282", + "pb_id":"ca-losangeles-17", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police shoot unarmed man in a wheelchair in the face", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/LosAngeles\/comments\/gwzgn8\/lapd_shoots_less_than_lethal_rounds_directly_at\/", + "https:\/\/www.dailynews.com\/2020\/06\/03\/dozens-arrested-in-downtown-los-angeles-tuesday-night-after-day-of-peaceful-protests\/", + "https:\/\/www.instagram.com\/p\/CBCiZXOlno4\/", + "https:\/\/twitter.com\/Terminal_Redux\/status\/1268870944615026690", + "https:\/\/abc7.com\/society\/homeless-man-hit-in-face-with-rubber-bullet-amid-la-protest-witnesses-say\/6234476\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b090c00-a9d6-11ea-95f5-23d097bbad79", + "pb_id":"ca-losangeles-18", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Photograph documents aftermath of LAPD firing non-lethal round at face of homeless man in wheelchair", + "description":null, + "links":[ + "https:\/\/www.instagram.com\/p\/CBCiZXOlno4\/", + "https:\/\/www.dailynews.com\/2020\/06\/03\/dozens-arrested-in-downtown-los-angeles-tuesday-night-after-day-of-peaceful-protests\/amp\/", + "https:\/\/abc7.com\/society\/homeless-man-hit-in-face-with-rubber-bullet-amid-la-protest-witnesses-say\/6234476\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b097980-a9d6-11ea-9b83-c19e1a31346f", + "pb_id":"ca-losangeles-19", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police zip tie protesters and lock them inside cages", + "description":null, + "links":[ + "https:\/\/www.instagram.com\/p\/CBEr2emJRyJ\/?igshid=oloj7lgtv81t", + "https:\/\/www.instagram.com\/p\/CBBNXXkJs0a\/?igshid=jgeposybda4a", + "https:\/\/abc7.com\/protest-arrest-george-floyd-curfews\/6234180\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b099ac0-a9d6-11ea-94b8-7b043bb137d6", + "pb_id":"ca-losangeles-22", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot crowd of unarmed protestors with rubber bullets", + "description":null, + "links":[ + "https:\/\/www.tiktok.com\/@w17ard\/video\/6833082563913977093?lang=en" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b09c1a0-a9d6-11ea-a074-9da17d7f5c78", + "pb_id":"ca-losangeles-20", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police strike protestors with batons", + "description":null, + "links":[ + "https:\/\/streamable.com\/ja2fw6", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gv8vaw\/lapd_beating_and_shooting_peaceful_protesters_for\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b09f380-a9d6-11ea-8d73-c1f24babc6f2", + "pb_id":"ca-losangeles-21", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police shoot rubber bullets at two peaceful protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/liveinochi\/status\/1267504585926557696", + "https:\/\/tikitoks.com\/@jacksonmonroe\/video\/6833397689187716358" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b0a2560-a9d6-11ea-97df-b74854360409", + "pb_id":"ca-losangeles-6", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police fire rubber\/pepper bullets at innocent protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/MatthewSantoro\/status\/1266916709304201216" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b0a7880-a9d6-11ea-825b-65df2b2cd10c", + "pb_id":"no-id-qOkDAVoK", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Photograph documents aftermath of LAPD firing non-lethal round at face of homeless man in wheelchair", + "description":null, + "links":[ + "https:\/\/www.instagram.com\/p\/CBCiZXOlno4\/", + "https:\/\/www.dailynews.com\/2020\/06\/03\/dozens-arrested-in-downtown-los-angeles-tuesday-night-after-day-of-peaceful-protests\/amp\/", + "https:\/\/abc7.com\/society\/homeless-man-hit-in-face-with-rubber-bullet-amid-la-protest-witnesses-say\/6234476\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b0ab6c0-a9d6-11ea-a014-9b6760de5b5c", + "pb_id":"ca-losangeles-23", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police shoot unarmed man in a wheelchair in the face", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/LosAngeles\/comments\/gwzgn8\/lapd_shoots_less_than_lethal_rounds_directly_at\/", + "https:\/\/www.dailynews.com\/2020\/06\/03\/dozens-arrested-in-downtown-los-angeles-tuesday-night-after-day-of-peaceful-protests\/", + "https:\/\/www.instagram.com\/p\/CBCiZXOlno4\/", + "https:\/\/twitter.com\/Terminal_Redux\/status\/1268870944615026690", + "https:\/\/abc7.com\/society\/homeless-man-hit-in-face-with-rubber-bullet-amid-la-protest-witnesses-say\/6234476\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b0b0d70-a9d6-11ea-b167-d549c372e427", + "pb_id":"no-id-hU2RfqG8", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police zip tie protesters and lock them inside cages", + "description":null, + "links":[ + "https:\/\/www.instagram.com\/p\/CBEr2emJRyJ\/?igshid=oloj7lgtv81t", + "https:\/\/www.instagram.com\/p\/CBBNXXkJs0a\/?igshid=jgeposybda4a", + "https:\/\/abc7.com\/protest-arrest-george-floyd-curfews\/6234180\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"7b0b4520-a9d6-11ea-b4aa-bf4f22787a26", + "pb_id":"ca-oakland-24", + "state":"California", + "city":"Oakland", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Officer runs down protesters with police cruiser", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gttdkj\/cop_driving_into_crowds_of_protestors\/" + ], + "data":null, + "geocoding":{ + "lat":"37.8043514", + "long":"-122.2711639" + } + }, + { + "id":"7b0b6440-a9d6-11ea-a450-4b7179f48a11", + "pb_id":"ca-oakland-25", + "state":"California", + "city":"Oakland", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Oakland law enforcement shoot a reporter", + "description":null, + "links":[ + "https:\/\/twitter.com\/SarahBelleLin\/status\/1266980899301683200" + ], + "data":null, + "geocoding":{ + "lat":"37.8043514", + "long":"-122.2711639" + } + }, + { + "id":"7b0b8200-a9d6-11ea-ac89-fb115a72ab89", + "pb_id":"ca-riverside-26", + "state":"California", + "city":"Riverside", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Law enforcement break a car window for no apparent reason", + "description":null, + "links":[ + "https:\/\/old.reddit.com\/r\/PublicFreakout\/comments\/gv2lku\/news_chopper_pans_out_as_riverside_county_sheriff\/" + ], + "data":null, + "geocoding":{ + "lat":"33.9806005", + "long":"-117.3754942" + } + }, + { + "id":"7b0b9eb0-a9d6-11ea-9db0-2f8fbd481646", + "pb_id":"ca-sacramento-27", + "state":"California", + "city":"Sacramento", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot protester in the head", + "description":null, + "links":[ + "https:\/\/youtu.be\/pRmBO34aXME", + "https:\/\/twitter.com\/mynameschazz\/status\/1266978442722947072?s=21" + ], + "data":null, + "geocoding":{ + "lat":"38.5815719", + "long":"-121.4943996" + } + }, + { + "id":"7b0bccc0-a9d6-11ea-a4c3-d3ecafb28135", + "pb_id":"ca-sacramento-28", + "state":"California", + "city":"Sacramento", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Sacramento law enforcement shoot shoot protesters and then announce their assembly unlawful", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/danny.garza.167\/videos\/10222535335080905\/" + ], + "data":null, + "geocoding":{ + "lat":"38.5815719", + "long":"-121.4943996" + } + }, + { + "id":"7b0be9d0-a9d6-11ea-9dd4-51340838acd1", + "pb_id":"ca-sacramento-29", + "state":"California", + "city":"Sacramento", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police choke man and push woman filming event to the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1268334584443342850", + "https:\/\/twitter.com\/reereeisme65\/status\/1267378345894789125" + ], + "data":null, + "geocoding":{ + "lat":"38.5815719", + "long":"-121.4943996" + } + }, + { + "id":"7b0c13e0-a9d6-11ea-a0f6-a316b70bfe43", + "pb_id":"no-id-89nemL27", + "state":"California", + "city":"San Diego", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police kettle and fire on fleeing protestors", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=6uNySPSwhAI&feature=youtu.be", + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gynpd8\/police_block_off_sidewalks_and_start_shooting_at\/" + ], + "data":null, + "geocoding":{ + "lat":"32.7157380", + "long":"-117.1610838" + } + }, + { + "id":"7b0c3fb0-a9d6-11ea-8a69-c73f5db4d1ad", + "pb_id":"ca-sandiego-30", + "state":"California", + "city":"San Diego", + "date":"2020-06-04T00:00:00.000000Z", + "title":"Police abduct woman in unmarked van", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1269009907367493634" + ], + "data":null, + "geocoding":{ + "lat":"32.7157380", + "long":"-117.1610838" + } + }, + { + "id":"7b0c5c40-a9d6-11ea-9e15-ef177ebc1193", + "pb_id":"ca-sanjose-31", + "state":"California", + "city":"San Jose", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police shoot a projectile at a protestor", + "description":null, + "links":[ + "https:\/\/twitter.com\/junkieanteater\/status\/1266603252839141377", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gtksgq\/cop_decides_to_shoot_at_protestor_who_hurt_his\/", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gtg2cb\/cop_waits_in_excitement_like_its_a_game\/", + "https:\/\/twitter.com\/bowiezamudio\/status\/1266598285206106113", + "https:\/\/twitter.com\/kakimeows\/status\/1266982771005616128" + ], + "data":null, + "geocoding":{ + "lat":"37.3382082", + "long":"-121.8863286" + } + }, + { + "id":"7b0cac90-a9d6-11ea-9cdb-814b63d3981b", + "pb_id":"ca-sanjose-38", + "state":"California", + "city":"San Jose", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Officer puts knee on neck of protester", + "description":null, + "links":[ + "https:\/\/twitter.com\/DeadByDawn101\/status\/1268825100385521665" + ], + "data":null, + "geocoding":{ + "lat":"37.3382082", + "long":"-121.8863286" + } + }, + { + "id":"7b0cc920-a9d6-11ea-8cf2-1fc679fb51bd", + "pb_id":"ca-sanjose-37", + "state":"California", + "city":"San Jose", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police fire on community activist", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1269267786792144898", + "https:\/\/abc7news.com\/man-who-trains-san-jose-police-about-bias-severely-injured-by-riot-gun-during-protest\/6234212\/", + "https:\/\/www.latimes.com\/california\/story\/2020-06-06\/community-organizer-shot-by-rubber-bullet-during-protest" + ], + "data":null, + "geocoding":{ + "lat":"37.3382082", + "long":"-121.8863286" + } + }, + { + "id":"7b0cff30-a9d6-11ea-9182-77342d440dd1", + "pb_id":"ca-santaana-32", + "state":"California", + "city":"Santa Ana", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police open fire on protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/YourAnonCentral\/status\/1266991237355069442" + ], + "data":null, + "geocoding":{ + "lat":"33.7454725", + "long":"-117.8676530" + } + }, + { + "id":"7b0d1ba0-a9d6-11ea-b7fd-b3d5f24230d5", + "pb_id":"ca-sanluisobispo-33", + "state":"California", + "city":"San Luis Obispo", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Law enforcement fire on crowd with their arms up chanting", + "description":null, + "links":[ + "https:\/\/twitter.com\/ma7dz\/status\/1267697838244298752" + ], + "data":null, + "geocoding":{ + "lat":"35.2827524", + "long":"-120.6596156" + } + }, + { + "id":"7b0d3bb0-a9d6-11ea-98be-316633a39955", + "pb_id":"ca-sanfrancisco-34", + "state":"California", + "city":"San Francisco", + "date":"2020-05-31T00:00:00.000000Z", + "title":"San Francisco law enforcement shove man off the sidewalk onto the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/caseylc9\/status\/1267285516262596608" + ], + "data":null, + "geocoding":{ + "lat":"37.7749295", + "long":"-122.4194155" + } + }, + { + "id":"7b0d5890-a9d6-11ea-8253-23f2a9c22464", + "pb_id":"ca-santamonica-35", + "state":"California", + "city":"Santa Monica", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police fire pepper bullets into apartment", + "description":null, + "links":[ + "https:\/\/twitter.com\/GIFsZP\/status\/1267241803750813703" + ], + "data":null, + "geocoding":{ + "lat":"34.0194543", + "long":"-118.4911912" + } + }, + { + "id":"7b0d7560-a9d6-11ea-a043-a931d3ae9905", + "pb_id":"ca-vallejo-37", + "state":"California", + "city":"Vallejo", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police fatally shoot unarmed 22 year old", + "description":null, + "links":[ + "https:\/\/www.theguardian.com\/us-news\/2020\/jun\/04\/vallejo-police-kill-unarmed-man-california" + ], + "data":null, + "geocoding":{ + "lat":"38.1040864", + "long":"-122.2566367" + } + }, + { + "id":"7b0d96a0-a9d6-11ea-b9c0-7fce72b8fa48", + "pb_id":"ca-walnutcreek-36", + "state":"California", + "city":"Walnut Creek", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Armored law enforcement vehicle threatens protestors", + "description":null, + "links":[ + "https:\/\/www.instagram.com\/p\/CA7KMc9pX5S\/" + ], + "data":null, + "geocoding":{ + "lat":"37.9100783", + "long":"-122.0651819" + } + }, + { + "id":"7b0db890-a9d6-11ea-aaa0-7d44a8aca861", + "pb_id":"mo-kansascity-5", + "state":"Missouri", + "city":"Kansas City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police pepper spray and arrest protestor holding sign", + "description":null, + "links":[ + "https:\/\/www.kansascity.com\/news\/local\/article243188436.html", + "https:\/\/www.facebook.com\/KuhlPics\/photos\/a.467614509924515\/3214027235283215\/?type=3&theater" + ], + "data":null, + "geocoding":{ + "lat":"39.0997265", + "long":"-94.5785667" + } + }, + { + "id":"7b0de320-a9d6-11ea-a9a6-554bd4868821", + "pb_id":"mo-kansascity-6", + "state":"Missouri", + "city":"Kansas City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police pepper spray protestors walking away and later arrest one of them", + "description":null, + "links":[ + "https:\/\/twitter.com\/RayVaca\/status\/1266959833753890816", + "https:\/\/twitter.com\/whoareyoujudy_\/status\/1266968858159702017" + ], + "data":null, + "geocoding":{ + "lat":"39.0997265", + "long":"-94.5785667" + } + }, + { + "id":"7b0e0c90-a9d6-11ea-9a9b-d38190980428", + "pb_id":"mo-kansascity-1", + "state":"Missouri", + "city":"Kansas City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police tear gas a park", + "description":null, + "links":[ + "https:\/\/twitter.com\/imunoz03\/status\/1266908372881768448" + ], + "data":null, + "geocoding":{ + "lat":"39.0997265", + "long":"-94.5785667" + } + }, + { + "id":"7b0e2c00-a9d6-11ea-b44d-fd6faaae5dd9", + "pb_id":"mo-kansascity-2", + "state":"Missouri", + "city":"Kansas City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Kansas City police attempt to arrest a man leading the protest then spray the crowd", + "description":null, + "links":[ + "https:\/\/twitter.com\/Elise_Villa\/status\/1267310319526989824", + "https:\/\/old.reddit.com\/r\/PublicFreakout\/comments\/guswxo\/he_wasnt_even_addressing_the_police\/" + ], + "data":null, + "geocoding":{ + "lat":"39.0997265", + "long":"-94.5785667" + } + }, + { + "id":"7b0e5630-a9d6-11ea-a80b-1bfc45d4e794", + "pb_id":"mo-kansascity-3", + "state":"Missouri", + "city":"Kansas City", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police arrest man for speaking and teargas nearby protestors", + "description":null, + "links":[ + "https:\/\/www.cnn.com\/2020\/06\/02\/us\/kansas-city-police-spray-protester-who-yelled\/index.html", + "https:\/\/twitter.com\/weslyinfinity\/status\/1267321172309544960?" + ], + "data":null, + "geocoding":{ + "lat":"39.0997265", + "long":"-94.5785667" + } + }, + { + "id":"7b0e8010-a9d6-11ea-9588-4336ba16dc60", + "pb_id":"mo-kansascity-4", + "state":"Missouri", + "city":"Kansas City", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police pull away protestor and pepper sprays others", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gut8n1\/in_kansas_city\/", + "https:\/\/www.google.ca\/maps\/place\/Giralda\/@39.0425007,-94.5880276,3a,75y,208.49h,97.09t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"39.0997265", + "long":"-94.5785667" + } + }, + { + "id":"7b0eabd0-a9d6-11ea-ad3f-ad47ee34f0be", + "pb_id":"mo-stlouis-1", + "state":"Missouri", + "city":"St. Louis", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Florissant officer hits man with unmarked police vehicle", + "description":null, + "links":[ + "https:\/\/www.ksdk.com\/article\/news\/local\/video-shows-florissant-officer-in-unmarked-car-hit-man-who-appears-to-be-running-away\/63-5db688ff-2f31-4e55-9d24-0707ecdb677f", + "https:\/\/www.facebook.com\/realstlnews\/videos\/2610967669219012\/" + ], + "data":null, + "geocoding":{ + "lat":"38.6270025", + "long":"-90.1994042" + } + }, + { + "id":"7b0ed890-a9d6-11ea-b238-b55dc921ba28", + "pb_id":"az-phoenix-1", + "state":"Arizona", + "city":"Phoenix", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Officer tackles and arrests person walking home from protest", + "description":null, + "links":[ + "https:\/\/twitter.com\/PhxProtestLIVE\/status\/1268390978571825156?s=20" + ], + "data":null, + "geocoding":{ + "lat":"33.4483771", + "long":"-112.0740373" + } + }, + { + "id":"7b0ef600-a9d6-11ea-94cb-373969fb4c88", + "pb_id":"ia-desmoines-1", + "state":"Iowa", + "city":"Des Moines", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police use or threaten to use pepper-spray in an elevator on apartment residents trying to go home", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1268235074580987906" + ], + "data":null, + "geocoding":{ + "lat":"41.5868353", + "long":"-93.6249593" + } + }, + { + "id":"7b0f1600-a9d6-11ea-adf3-1bb0d0d8ff99", + "pb_id":"ia-iowacity-2", + "state":"Iowa", + "city":"Iowa City", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police shoot tear gas at peaceful protestors who have their hands up", + "description":null, + "links":[ + "https:\/\/twitter.com\/DJPAIMON\/status\/1268399580753858561" + ], + "data":null, + "geocoding":{ + "lat":"41.6611277", + "long":"-91.5301683" + } + }, + { + "id":"7b0f3840-a9d6-11ea-b3d3-db218c2bd531", + "pb_id":"nv-lasvegas-3", + "state":"Nevada", + "city":"Las Vegas", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police arrest a man for speaking at them from a distance.", + "description":null, + "links":[ + "https:\/\/twitter.com\/itsraiialex\/status\/1266770032719040513" + ], + "data":null, + "geocoding":{ + "lat":"36.1699412", + "long":"-115.1398296" + } + }, + { + "id":"7b0f55f0-a9d6-11ea-9cfd-c78a07675382", + "pb_id":"nv-lasvegas-1", + "state":"Nevada", + "city":"Las Vegas", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shove and drag man through the street", + "description":null, + "links":[ + "https:\/\/twitter.com\/LasVegasLocally\/status\/1267210841595604992", + "https:\/\/www.instagram.com\/p\/CA14rooHIC6\/?utm_source=ig_web_copy_link" + ], + "data":null, + "geocoding":{ + "lat":"36.1699412", + "long":"-115.1398296" + } + }, + { + "id":"7b0f8050-a9d6-11ea-a5cc-99140326ba09", + "pb_id":"nv-lasvegas-2", + "state":"Nevada", + "city":"Las Vegas", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police charge into peaceful crowd shouting \"grab anybody\"", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/chadloder\/status\/1267168204863926274" + ], + "data":null, + "geocoding":{ + "lat":"36.1699412", + "long":"-115.1398296" + } + }, + { + "id":"7b0fa220-a9d6-11ea-839f-619eda8b46ef", + "pb_id":"no-id-o8YJnubX", + "state":"Connecticut", + "city":"Waterbury", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Officer forces women into car and wrestles with another", + "description":null, + "links":[ + "https:\/\/twitter.com\/Youbeenafannn\/status\/1268253924471037959" + ], + "data":null, + "geocoding":{ + "lat":"41.5581525", + "long":"-73.0514965" + } + }, + { + "id":"7b0fc100-a9d6-11ea-b52f-4de21ea5c0a9", + "pb_id":"no-id-Mpv3xxe9", + "state":"Connecticut", + "city":"Waterbury", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police tackle and detain 6 protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/mattaustinTV\/status\/1267189278691528706", + "https:\/\/twitter.com\/RACCEWtby\/status\/1268173057375514624", + "https:\/\/twitter.com\/Calibud_Art\/status\/1268274760250777600" + ], + "data":null, + "geocoding":{ + "lat":"41.5581525", + "long":"-73.0514965" + } + }, + { + "id":"7b0ff7e0-a9d6-11ea-abec-0d08012748fb", + "pb_id":"pa-erie-1", + "state":"Pennsylvania", + "city":"Erie", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police officer maces woman and kicks her in the head", + "description":null, + "links":[ + "https:\/\/twitter.com\/ItsKadynC\/status\/1266967646345613317", + "https:\/\/twitter.com\/the7goonies\/status\/1266989439160590336", + "https:\/\/papost.org\/2020\/05\/31\/erie-woman-who-was-kicked-by-police-officer-saysi-was-100-percent-peaceful\/" + ], + "data":null, + "geocoding":{ + "lat":"42.1292241", + "long":"-80.0850590" + } + }, + { + "id":"7b103120-a9d6-11ea-9813-05d32080b4fd", + "pb_id":"pa-harrisburg-2", + "state":"Pennsylvania", + "city":"Harrisburg", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police pepperspray protesters helping someone stand up", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1266862623041167362" + ], + "data":null, + "geocoding":{ + "lat":"40.2731911", + "long":"-76.8867008" + } + }, + { + "id":"7b1051b0-a9d6-11ea-9e34-cfc1d64969d5", + "pb_id":"pa-philadelphia-3", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Philadelphia cops beat man and forcefully put his fingers on their baton.", + "description":null, + "links":[ + "https:\/\/metro.co.uk\/2020\/06\/01\/cop-put-baton-george-floyd-protesters-hand-put-knee-neck-12789427\/", + "https:\/\/twitter.com\/mkultranews\/status\/1267305587206807553" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"7b106f90-a9d6-11ea-b8c5-ffea62e3e811", + "pb_id":"pa-philadelphia-4", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Philadelphia Police Trap Protesters on Highway, Then Tear Gas Them and Shoot Rubber Bullets", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/guve5f\/philadelphia_police_traps_protesters_on_highway\/", + "https:\/\/twitter.com\/bbcease\/status\/1267582823428501508", + "https:\/\/www.youtube.com\/watch?v=cXzWicPCNQg", + "https:\/\/youtu.be\/oCVe8mXOU94", + "https:\/\/vimeo.com\/425235774", + "https:\/\/youtu.be\/srC5l--cn14" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"7b108db0-a9d6-11ea-b6ed-cda40d2b49fc", + "pb_id":"pa-philadelphia-5", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police officer pepper-sprays three people on their knees", + "description":null, + "links":[ + "https:\/\/twitter.com\/d0wnrrrrr\/status\/1267691766188310528" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"7b10ba60-a9d6-11ea-b76b-7f1a0f00d295", + "pb_id":"pa-philadelphia-6", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police kneel on man who says \"I can't breathe\", officer yells profanities back", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1268200800649707526" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"7b1123d0-a9d6-11ea-b6f3-ebc240833713", + "pb_id":"pa-philadelphia-7", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police shove protestors and strike man across the face with a baton", + "description":null, + "links":[ + "https:\/\/www.inquirer.com\/news\/philadelphia-police-beating-temple-student-evan-gorski-protest-20200604.html", + "https:\/\/twitter.com\/greg_doucette\/status\/1268766216161763328", + "https:\/\/twitter.com\/Peopledelphia\/status\/1267588991655784448", + "https:\/\/www.inquirer.com\/news\/philadelphia-police-beating-temple-student-joseph-bologna-protest-20200605.html", + "https:\/\/whyy.org\/articles\/philly-police-commander-videotaped-beating-protesters-linked-to-narcotics-scandal-misconduct\/" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"7b114110-a9d6-11ea-bbf5-f33d062e6e8d", + "pb_id":"pa-philadelphia-9", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police shove protestors and strike man across the face with a baton", + "description":null, + "links":[ + "https:\/\/www.inquirer.com\/news\/philadelphia-police-beating-temple-student-evan-gorski-protest-20200604.html", + "https:\/\/twitter.com\/greg_doucette\/status\/1268766216161763328", + "https:\/\/twitter.com\/Peopledelphia\/status\/1267588991655784448", + "https:\/\/www.inquirer.com\/news\/philadelphia-police-beating-temple-student-joseph-bologna-protest-20200605.html", + "https:\/\/whyy.org\/articles\/philly-police-commander-videotaped-beating-protesters-linked-to-narcotics-scandal-misconduct\/" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"7b119910-a9d6-11ea-8d70-37f1fa148ca3", + "pb_id":"pa-philadelphia-12", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Officer attacks woman for no apparent reason", + "description":null, + "links":[ + "https:\/\/twitter.com\/tippedminimum\/status\/1268001268406136832" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"7b11b890-a9d6-11ea-bec9-2ddb211cd5c1", + "pb_id":"pa-philadelphia-8", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Officer attacks woman for no apparent reason", + "description":null, + "links":[ + "https:\/\/twitter.com\/tippedminimum\/status\/1268001268406136832" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"7b11d8d0-a9d6-11ea-b9d2-89e66da4c123", + "pb_id":"pa-pittsburgh-10", + "state":"Pennsylvania", + "city":"Pittsburgh", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Officer pepper-sprays a woman who is on her knees with her hands up", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=TxHxU6nhzzQ", + "https:\/\/twitter.com\/PaulaReedWard\/status\/1268547369618026503", + "https:\/\/www.post-gazette.com\/news\/crime-courts\/2020\/06\/03\/East-Liberty-protest-Abigail-Rubio-says-Pittsburgh-police-intimidated-video\/stories\/202006030158" + ], + "data":null, + "geocoding":{ + "lat":"40.4406248", + "long":"-79.9958864" + } + }, + { + "id":"7b121470-a9d6-11ea-a09d-f59b322d2c23", + "pb_id":"pa-pittsburgh-11", + "state":"Pennsylvania", + "city":"Pittsburgh", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police fire tear gas and rubber bullets on peaceful assembly", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/pittsburgh\/comments\/guzshz\/police_declaring_an_unlawful_assembly_against_a\/", + "https:\/\/www.facebook.com\/BenjaminKFerris\/posts\/3091613010894973", + "https:\/\/twitter.com\/gautamyadav818\/status\/1267606317893550080" + ], + "data":null, + "geocoding":{ + "lat":"40.4406248", + "long":"-79.9958864" + } + }, + { + "id":"7b124e70-a9d6-11ea-af28-31d7182e447f", + "pb_id":"ny-buffalo-1", + "state":"New York", + "city":"Buffalo", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police tackle man giving interview", + "description":null, + "links":[ + "https:\/\/twitter.com\/secretlaith\/status\/1268251322467450880" + ], + "data":null, + "geocoding":{ + "lat":"42.8864468", + "long":"-78.8783689" + } + }, + { + "id":"7b126be0-a9d6-11ea-983d-5d6605581ae0", + "pb_id":"ny-buffalo-2", + "state":"New York", + "city":"Buffalo", + "date":"2020-06-04T00:00:00.000000Z", + "title":"Police shove elderly man, causing him to fall and hit the back of his head", + "description":null, + "links":[ + "https:\/\/twitter.com\/WBFO\/status\/1268712530358292484", + "https:\/\/news.wbfo.org\/post\/graphic-video-buffalo-police-officers-violently-shove-man-ground", + "https:\/\/www.facebook.com\/watch\/?ref=external&v=2489206818056597", + "https:\/\/www.wivb.com\/news\/five-people-arrested-one-person-injured-during-protest-activity-in-niagara-square\/", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gwv7k4\/just_about_an_hour_ago_police_officers_shove_man\/fsxfeb3\/" + ], + "data":null, + "geocoding":{ + "lat":"42.8864468", + "long":"-78.8783689" + } + }, + { + "id":"7b12be90-a9d6-11ea-8585-4d768b128868", + "pb_id":"ny-rochester-3", + "state":"New York", + "city":"Rochester", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot at people filming", + "description":null, + "links":[ + "https:\/\/twitter.com\/bleeezyy_\/status\/1266894195865931778" + ], + "data":null, + "geocoding":{ + "lat":"43.1565779", + "long":"-77.6088465" + } + }, + { + "id":"7b12de80-a9d6-11ea-a7dc-27a3195f3190", + "pb_id":"ny-newyorkcity-12", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"State senator pepper sprayed", + "description":null, + "links":[ + "https:\/\/twitter.com\/zellnor4ny\/status\/1266802303807500288" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b131780-a9d6-11ea-8ea7-55ef5c7cf420", + "pb_id":"ny-newyorkcity-13", + "state":"New York", + "city":"New York City", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police drive by man and hit him with car door", + "description":null, + "links":[ + "https:\/\/twitter.com\/DriveWendys\/status\/1266555286678048770" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b133810-a9d6-11ea-bb7e-ef01e445deea", + "pb_id":"ny-newyorkcity-17", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Officers beat man until his face and belongings are bloody", + "description":null, + "links":[ + "https:\/\/wapo.st\/2Mx7WY6", + "https:\/\/www.washingtonpost.com\/national\/protests-police-brutality-video\/2020\/06\/05\/a9e66568-a768-11ea-b473-04905b1af82b_story.html" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b136240-a9d6-11ea-92a6-8fb8276911f2", + "pb_id":"ny-newyorkcity-5", + "state":"New York", + "city":"New York City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"NYPD beat people with batons", + "description":null, + "links":[ + "https:\/\/twitter.com\/j0ncampbell\/status\/1266514356071735296" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b138c20-a9d6-11ea-a55a-31b63006187c", + "pb_id":"ny-newyorkcity-7", + "state":"New York", + "city":"New York City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Cop shoving a person to the ground towards metal trash bins", + "description":null, + "links":[ + "https:\/\/twitter.com\/crankberries\/status\/1266584559245803522", + "https:\/\/twitter.com\/greg_doucette\/status\/1266850004720812032" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b13acb0-a9d6-11ea-933e-156b443e3668", + "pb_id":"ny-newyorkcity-8", + "state":"New York", + "city":"New York City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Huffpost reporter is arrested by NYPD", + "description":null, + "links":[ + "https:\/\/twitter.com\/HuffPost\/status\/1266936484692725766", + "https:\/\/www.huffpost.com\/entry\/huffpost-reporter-chris-mathias-arrested_n_5ed320d9c5b640cb8341c921" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b13d6d0-a9d6-11ea-b35d-1d11412d53f0", + "pb_id":"ny-newyorkcity-9", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police pull off protesters mask to pepper spray him", + "description":null, + "links":[ + "https:\/\/twitter.com\/_doreenpt\/status\/1266994439039455232" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b1403f0-a9d6-11ea-b6b4-f757369fa9c7", + "pb_id":"ny-newyorkcity-16", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police injure journalist", + "description":null, + "links":[ + "https:\/\/twitter.com\/tylergabriel_\/status\/1267287516345925632" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b143080-a9d6-11ea-bee5-0bcf25f709ae", + "pb_id":"ny-newyorkcity-6", + "state":"New York", + "city":"New York City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Cop shoves a guy into a metal fence", + "description":null, + "links":[ + "https:\/\/twitter.com\/ZachReports\/status\/1266557305107202049", + "https:\/\/twitter.com\/BTSsavedmylife9\/status\/1266754310161006594" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b145ba0-a9d6-11ea-ab25-af586e040c49", + "pb_id":"ny-newyorkcity-10", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"NYPD rams protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/pgarapon\/status\/1266885414016688134", + "https:\/\/twitter.com\/mkultranews\/status\/1266893237450498048" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b148780-a9d6-11ea-be14-39a841bfd087", + "pb_id":"ny-newyorkcity-11", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police assault protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/theactivistTati\/status\/1266889419858075649" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b14a4b0-a9d6-11ea-acca-3fe6a717c49a", + "pb_id":"ny-newyorkcity-14", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"State senator pepper sprayed", + "description":null, + "links":[ + "https:\/\/twitter.com\/zellnor4ny\/status\/1266802303807500288" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b14c1b0-a9d6-11ea-8b00-d3b65111f651", + "pb_id":"ny-newyorkcity-15", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Protesters with hands up assaulted by police", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gu2u28\/more_documented_aggression_in_flatbush_brooklyn\/" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b14e200-a9d6-11ea-8da0-9f805965fd65", + "pb_id":"ny-newyorkcity-24", + "state":"New York", + "city":"New York City", + "date":"2020-06-04T00:00:00.000000Z", + "title":"Officers arrest cyclists; a man who questions police is clubbed in the neck", + "description":null, + "links":[ + "https:\/\/twitter.com\/sa0un\/status\/1268933117827571714" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b14ff30-a9d6-11ea-9706-73de815e3952", + "pb_id":"no-id-XOiksWqQ", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Officers beat man until his face and belongings are bloody", + "description":null, + "links":[ + "https:\/\/wapo.st\/2Mx7WY6", + "https:\/\/www.washingtonpost.com\/national\/protests-police-brutality-video\/2020\/06\/05\/a9e66568-a768-11ea-b473-04905b1af82b_story.html" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b1528d0-a9d6-11ea-9175-fd953c1aba2b", + "pb_id":"ny-newyorkcity-18", + "state":"New York", + "city":"New York City", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Officer threatens protestors with what appears to be a handgun", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/jangelooff\/status\/1267308341660979200" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b1545c0-a9d6-11ea-b1bc-75e627c0e8fc", + "pb_id":"ny-newyorkcity-4", + "state":"New York", + "city":"New York City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police officer throws man against police car", + "description":null, + "links":[ + "https:\/\/twitter.com\/Stoney_Holiday\/status\/1266616250685444096", + "https:\/\/www.instagram.com\/p\/CAzSOtGlKQY\/" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b157140-a9d6-11ea-9a20-5d6cbb4e8b8a", + "pb_id":"ny-newyorkcity-19", + "state":"New York", + "city":"New York City", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police officer body slams protestor", + "description":null, + "links":[ + "https:\/\/twitter.com\/jhermann\/status\/1268043720399691776", + "https:\/\/twitter.com\/altochulo\/status\/1268018561571840000" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b158e10-a9d6-11ea-b1d1-b342dc377cba", + "pb_id":"ny-newyorkcity-20", + "state":"New York", + "city":"New York City", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police beat protesters leaving Stonewall Inn solidarity protest", + "description":null, + "links":[ + "https:\/\/www.lgbtqnation.com\/2020\/06\/cops-beat-lgbtq-protestors-leaving-demonstration-stonewall-inn\/" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b15b790-a9d6-11ea-bf07-83605b53eb68", + "pb_id":"ny-newyorkcity-21", + "state":"New York", + "city":"New York City", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Officers beat man with batons", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/newyorkcity\/comments\/gv8aft\/police_beat_man_without_even_attempting_to_arrest\/", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gv43ar\/police_beat_man_without_even_attempting_to_arrest\/" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b15e330-a9d6-11ea-9beb-f58aa91dffb8", + "pb_id":"ny-newyorkcity-22", + "state":"New York", + "city":"New York City", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Man walking his bike beaten by officers with batons", + "description":null, + "links":[ + "https:\/\/twitter.com\/joshfoxfilm\/status\/1268366550475603969", + "https:\/\/www.dailymail.co.uk\/news\/article-8388515\/NYPD-cop-beats-cyclist-nightstick-tries-away.html" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b1602c0-a9d6-11ea-b615-d7b199e864ae", + "pb_id":"ny-newyorkcity-25", + "state":"New York", + "city":"New York City", + "date":"2020-06-05T00:00:00.000000Z", + "title":"NYPD pushes crowd into tight space and attacks several with batons", + "description":null, + "links":[ + "https:\/\/twitter.com\/AndomForNY\/status\/1269065176814358529" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b162260-a9d6-11ea-866d-ab314e0ea5c5", + "pb_id":"ny-newyorkcity-23", + "state":"New York", + "city":"New York City", + "date":"2020-06-04T00:00:00.000000Z", + "title":"NYPD Officers hit and knock down a protestor and a journalist", + "description":null, + "links":[ + "https:\/\/twitter.com\/johnknefel\/status\/1268736946031001607" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"7b164020-a9d6-11ea-8064-2da3cfa19344", + "pb_id":"mi-detroit-4", + "state":"Michigan", + "city":"Detroit", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Officer charges through other officers to attack a protestor who is backing away", + "description":null, + "links":[ + "https:\/\/twitter.com\/joeguillen\/status\/1266563974658744321" + ], + "data":null, + "geocoding":{ + "lat":"42.3314270", + "long":"-83.0457538" + } + }, + { + "id":"7b165d70-a9d6-11ea-8372-1955307b36aa", + "pb_id":"mi-detroit-1", + "state":"Michigan", + "city":"Detroit", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shove and scream at men walking down the street", + "description":null, + "links":[ + "https:\/\/twitter.com\/AkramG03\/status\/1266876680142049282" + ], + "data":null, + "geocoding":{ + "lat":"42.3314270", + "long":"-83.0457538" + } + }, + { + "id":"7b167f20-a9d6-11ea-a1e8-ef6e80aa6e5e", + "pb_id":"mi-detroit-2", + "state":"Michigan", + "city":"Detroit", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police pepperspray reporter holding up media badge", + "description":null, + "links":[ + "https:\/\/twitter.com\/DetroitReporter\/status\/1266957225114861568", + "https:\/\/www.freep.com\/story\/news\/local\/michigan\/detroit\/2020\/06\/01\/journalists-targeted-police-protests-detroit\/5302659002\/" + ], + "data":null, + "geocoding":{ + "lat":"42.3314270", + "long":"-83.0457538" + } + }, + { + "id":"7b16ab40-a9d6-11ea-92c4-15d82ca7d354", + "pb_id":"mi-detroit-3", + "state":"Michigan", + "city":"Detroit", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shoot rubber bullets at reporters", + "description":null, + "links":[ + "https:\/\/twitter.com\/reporterdavidj\/status\/1266966021077962752" + ], + "data":null, + "geocoding":{ + "lat":"42.3314270", + "long":"-83.0457538" + } + }, + { + "id":"7b16c890-a9d6-11ea-8c29-97d824bd2596", + "pb_id":"mi-grandrapids-5", + "state":"Michigan", + "city":"Grand Rapids", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police spray unarmed man with pepperspray and shoot him in the face with a teargas canister", + "description":null, + "links":[ + "https:\/\/old.reddit.com\/r\/Bad_Cop_No_Donut\/comments\/gub8fx\/police_shoot_protestor_point_blank_in_the_face\/", + "https:\/\/www.fox17online.com\/news\/local-news\/grand-rapids\/grpd-conducting-internal-investigation-after-viral-video-of-man-being-pepper-sprayed", + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gv3xuu\/police_in_grand_rapids_michigan_spray_a_man\/" + ], + "data":null, + "geocoding":{ + "lat":"42.9633599", + "long":"-85.6680863" + } + }, + { + "id":"7b1707a0-a9d6-11ea-a612-71741133fecb", + "pb_id":"mi-kalamazoo-6", + "state":"Michigan", + "city":"Kalamazoo", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police fire tear gas at prone protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/i\/status\/1267677463850745858", + "https:\/\/www.facebook.com\/BlaineBurnett11\/videos\/963503949886\/" + ], + "data":null, + "geocoding":{ + "lat":"42.2917069", + "long":"-85.5872286" + } + }, + { + "id":"7b173350-a9d6-11ea-b440-67b43c7ae231", + "pb_id":"mi-kalamazoo-7", + "state":"Michigan", + "city":"Kalamazoo", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police fire tear gas at peaceful protesters", + "description":null, + "links":[ + "https:\/\/streamable.com\/xvlky1", + "https:\/\/streamable.com\/0wfiu3", + "https:\/\/www.mlive.com\/news\/kalamazoo\/2020\/06\/my-heart-was-wrenched-with-pain-assistant-chief-says-of-ordering-tear-gas-on-protesters.html", + "https:\/\/ibb.co\/Fgrwqkj" + ], + "data":null, + "geocoding":{ + "lat":"42.2917069", + "long":"-85.5872286" + } + }, + { + "id":"7b1779e0-a9d6-11ea-8dd8-ab3dcecd712e", + "pb_id":"tbd-tbd-1", + "state":"Unknown Location", + "city":"", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Compilation of incidents", + "description":null, + "links":[ + "https:\/\/twitter.com\/perfectlyg0lden\/status\/1267014293628870656" + ], + "data":null, + "geocoding":{ + "lat":"42.9872543", + "long":"-87.8888015" + } + }, + { + "id":"7b1798f0-a9d6-11ea-89eb-33ed2dc9f75f", + "pb_id":"tbd-tbd-2", + "state":"Unknown Location", + "city":"", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Officer beats a protestor while pinning him on the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/samjwc\/status\/1267355060666654720" + ], + "data":null, + "geocoding":{ + "lat":"42.9872543", + "long":"-87.8888015" + } + }, + { + "id":"7b17b620-a9d6-11ea-97f9-71550ba325d3", + "pb_id":"tn-memphis-1", + "state":"Tennessee", + "city":"Memphis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police swarm a woman without provocation", + "description":null, + "links":[ + "https:\/\/twitter.com\/Desi_Stennett\/status\/1266996885824380929" + ], + "data":null, + "geocoding":{ + "lat":"35.1495343", + "long":"-90.0489801" + } + }, + { + "id":"7b17d310-a9d6-11ea-b795-f59c6bec9414", + "pb_id":"vt-stjohnsbury-1", + "state":"Vermont", + "city":"St. Johnsbury", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police shove a protesting woman down a set of concrete steps.", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/story.php?story_fbid=3011143412313088&id=100002523772680", + "https:\/\/vtdigger.org\/2020\/06\/03\/police-arrest-4-at-st-johnsbury-george-floyd-protest\/" + ], + "data":null, + "geocoding":{ + "lat":"44.4192627", + "long":"-72.0151184" + } + }, + { + "id":"7b17fcb0-a9d6-11ea-ba4a-bb7b4fb09669", + "pb_id":"wa-seattle-1", + "state":"Washington", + "city":"Seattle", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Officer pins protestor by pushing his knee into his neck", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/chadloder\/status\/1267011092045115392" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b181c30-a9d6-11ea-a482-ab87312b005e", + "pb_id":"wa-seattle-2", + "state":"Washington", + "city":"Seattle", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police beat unarmed man on the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/gunduzbaba1905\/status\/1266937500607614982" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b183970-a9d6-11ea-b788-5dfe60ede6e6", + "pb_id":"wa-seattle-3", + "state":"Washington", + "city":"Seattle", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police indiscriminately pepper spray peaceful protesters", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Bad_Cop_No_Donut\/comments\/gtt3w8\/i_caught_the_moment_seattle_police_pepper_sprayed\/" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b185660-a9d6-11ea-b284-a190c6a3b24b", + "pb_id":"wa-seattle-4", + "state":"Washington", + "city":"Seattle", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police pepper spray young child", + "description":null, + "links":[ + "https:\/\/www.fox10phoenix.com\/news\/video-shows-milk-poured-over-face-of-child-pepper-sprayed-in-seattle-protest" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b1873c0-a9d6-11ea-83d2-bdf4b8f5b94b", + "pb_id":"wa-seattle-8", + "state":"Washington", + "city":"Seattle", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police throw tear gas at peaceful protestors", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Seattle\/comments\/gu3qq1\/cop_just_casually_tosses_tear_gas_at_my_feet_like\/", + "https:\/\/www.google.ca\/maps\/@47.6117535,-122.3363867,3a,75y,340.76h,98.03t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b18a5b0-a9d6-11ea-b6a7-cf245b7fb03c", + "pb_id":"wa-seattle-6", + "state":"Washington", + "city":"Seattle", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police officer pulls protestor to the ground unprovoked", + "description":null, + "links":[ + "https:\/\/twitter.com\/EDDIFUL\/status\/1267338642617364481", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gv9g5n\/the_police_were_spotted_instigating_violence\/", + "https:\/\/peertube.live\/videos\/watch\/9e9323af-3ea1-4d3c-856d-a7f0a66688e7" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b18e230-a9d6-11ea-9a7b-5b4902ba0112", + "pb_id":"wa-seattle-12", + "state":"Washington", + "city":"Seattle", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Law enforcement officer punches pinned protestor", + "description":null, + "links":[ + "https:\/\/twitter.com\/The_Stepover\/status\/1267236742278463488", + "https:\/\/twitter.com\/eavu__\/status\/1267260549814870016" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b1911c0-a9d6-11ea-a58c-43b2d4a956af", + "pb_id":"wa-seattle-7", + "state":"Washington", + "city":"Seattle", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Law enforcement officers throw flashbangs into peaceful crowd", + "description":null, + "links":[ + "https:\/\/twitter.com\/The_Stepover\/status\/1267237940184231936" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b192f60-a9d6-11ea-aaa0-472c0150b6bf", + "pb_id":"wa-seattle-9", + "state":"Washington", + "city":"Seattle", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police initiate violence", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Seattle\/comments\/gv0ru3\/this_is_the_moment_it_all_happened\/", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gv1spo\/the_moment_seattle_police_instigate_a_riot_over_a\/" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b195970-a9d6-11ea-a409-dd38b2159ea6", + "pb_id":"wa-seattle-10", + "state":"Washington", + "city":"Seattle", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police strike active newscrew with flashbang", + "description":null, + "links":[ + "https:\/\/twitter.com\/Acyn\/status\/1267673936659021830?s=20" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b197690-a9d6-11ea-b891-c7b7345f6d1f", + "pb_id":"wa-seattle-5", + "state":"Washington", + "city":"Seattle", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Officers deploy flashbangs and pepper spray peaceful protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/catsayshello\/status\/1268073344814866432", + "https:\/\/www.instagram.com\/tv\/CA63KMnlVvu\/?igshid=hfp3uoaqe23p", + "https:\/\/old.reddit.com\/r\/Seattle\/comments\/gv0ru3\/this_is_the_moment_it_all_happened\/" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b1995b0-a9d6-11ea-9d54-c3c870cff98c", + "pb_id":"wa-seattle-11", + "state":"Washington", + "city":"Seattle", + "date":"2020-06-06T00:00:00.000000Z", + "title":"Officer chokes and places knee on neck of woman", + "description":null, + "links":[ + "https:\/\/twitter.com\/i\/status\/1269352173663592449" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b19b590-a9d6-11ea-885e-85b4b9015a2c", + "pb_id":"wa-seattle-13", + "state":"Washington", + "city":"Seattle", + "date":"2020-06-06T00:00:00.000000Z", + "title":"Police kettle protesters to force them to disperse through tear-gas", + "description":null, + "links":[ + "https:\/\/twitter.com\/MikeApe7\/status\/1269533701194444800", + "https:\/\/twitter.com\/MikeApe7\/status\/1269538201254805504" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b19e810-a9d6-11ea-a98f-7f4b847ba2c3", + "pb_id":"wa-seattle-12", + "state":"Washington", + "city":"Seattle", + "date":"2020-06-07T00:00:00.000000Z", + "title":"Police use tear gas on protestors", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gycscp\/cant_go_1_day_without_teargaslighting_us\/?utm_source=share&utm_medium=web2x", + "https:\/\/www.forbes.com\/sites\/jemimamcevoy\/2020\/06\/08\/seattle-police-use-tear-gas-against-protestors-despite-city-ban\/#7e98a1d5b4bc" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b1a1550-a9d6-11ea-ac52-43dc958eee8f", + "pb_id":"no-id-Tf9caFfG", + "state":"Washington", + "city":"Seattle", + "date":"2020-06-07T00:00:00.000000Z", + "title":"Woman hit with police projectile resumes breathing after CPR, delivered to hospital", + "description":null, + "links":[ + "https:\/\/twitter.com\/chaseburnsy\/status\/1269889977363525634", + "https:\/\/www.reddit.com\/r\/Seattle\/comments\/gywxhz\/folks_i_need_your_help\/" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"7b1a3fe0-a9d6-11ea-adde-31917ea89df5", + "pb_id":"ky-louisville-2", + "state":"Kentucky", + "city":"Louisville", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shoot rubber bullets at reporter", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gt69qe\/police_start_shooting_press_with_some_kinda\/", + "https:\/\/twitter.com\/greg_doucette\/status\/1266557059606163456", + "https:\/\/twitter.com\/KaitlinRustWAVE\/status\/1268218653104693248" + ], + "data":null, + "geocoding":{ + "lat":"38.2526647", + "long":"-85.7584557" + } + }, + { + "id":"7b1a7980-a9d6-11ea-992c-fdde48d7a9bb", + "pb_id":"ky-louisville-4", + "state":"Kentucky", + "city":"Louisville", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Young woman shot in the head by a rubber bullet", + "description":null, + "links":[ + "https:\/\/twitter.com\/shannynsharyse\/status\/1267015577266249728", + "https:\/\/twitter.com\/shannynsharyse\/status\/1266631722239766528" + ], + "data":null, + "geocoding":{ + "lat":"38.2526647", + "long":"-85.7584557" + } + }, + { + "id":"7b1aa730-a9d6-11ea-af92-c12e2badc3e6", + "pb_id":"ky-louisville-1", + "state":"Kentucky", + "city":"Louisville", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police smashing water bottles", + "description":null, + "links":[ + "https:\/\/twitter.com\/nataliealund\/status\/1266877181164089349", + "https:\/\/twitter.com\/WFPLNews\/status\/1266923468102262784" + ], + "data":null, + "geocoding":{ + "lat":"38.2526647", + "long":"-85.7584557" + } + }, + { + "id":"7b1ad140-a9d6-11ea-b221-316b406648bf", + "pb_id":"ky-louisville-5", + "state":"Kentucky", + "city":"Louisville", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot at cars in traffic from overpass", + "description":null, + "links":[ + "https:\/\/twitter.com\/Itz5500Gillz\/status\/1267454024288292867" + ], + "data":null, + "geocoding":{ + "lat":"38.2526647", + "long":"-85.7584557" + } + }, + { + "id":"7b1aee10-a9d6-11ea-b7e6-ab6090a8d6f5", + "pb_id":"ky-louisville-3", + "state":"Kentucky", + "city":"Louisville", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Louisville police swarm and beat a man screaming on the ground", + "description":null, + "links":[ + "https:\/\/reddit.com\/r\/PublicFreakout\/comments\/gutezm\/multiple_kentucky_state_police_troopers_tackled\/" + ], + "data":null, + "geocoding":{ + "lat":"38.2526647", + "long":"-85.7584557" + } + }, + { + "id":"7b1b0d60-a9d6-11ea-a231-5d8ab67aeb3e", + "pb_id":"ky-louisville-6", + "state":"Kentucky", + "city":"Louisville", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Restaurant owner shot and killed", + "description":null, + "links":[ + "https:\/\/edition.cnn.com\/2020\/06\/02\/us\/david-mcatee-louisville-what-we-know-trnd\/index.html", + "https:\/\/edition.cnn.com\/2020\/06\/01\/us\/louisville-protests-man-shot-dead\/index.html", + "https:\/\/youtu.be\/wDg9fev67lw", + "https:\/\/mobile.twitter.com\/chadloder\/status\/1267555717751296000", + "https:\/\/www.nytimes.com\/video\/us\/100000007175316\/the-david-mcatee-shooting-did-aggressive-policing-lead-to-a-fatal-outcome.html" + ], + "data":null, + "geocoding":{ + "lat":"38.2526647", + "long":"-85.7584557" + } + }, + { + "id":"7b1b5d50-a9d6-11ea-9cff-419a59c01786", + "pb_id":"ky-louisville-7", + "state":"Kentucky", + "city":"Louisville", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Protestors in St. Matthews shot with pepper rounds", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Louisville\/comments\/gw5joa\/peaceful_protesters_marching_in_st_mathews_get\/" + ], + "data":null, + "geocoding":{ + "lat":"38.2526647", + "long":"-85.7584557" + } + }, + { + "id":"7b1b7a60-a9d6-11ea-b69f-81c0c3c6eb21", + "pb_id":"sc-charleston-1", + "state":"South Carolina", + "city":"Charleston", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police Individually Target Peaceful Protestor and Arrest Him", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/guxm5o\/police_arresting_a_peaceful_protestor_for_simply\/?utm_source=share&utm_medium=ios_app&utm_name=iossmf", + "https:\/\/www.reddit.com\/r\/iamatotalpieceofshit\/comments\/gugrfa\/man_reaches_out_with_love_to_the_cops_and_they\/", + "https:\/\/www.postandcourier.com\/news\/he-told-charleston-police-i-am-not-your-enemy-then-he-was-handcuffed\/article_e7de4b0a-a43f-11ea-a019-1f9e6a20ea55.html" + ], + "data":null, + "geocoding":{ + "lat":"32.7764749", + "long":"-79.9310512" + } + }, + { + "id":"7b1bb280-a9d6-11ea-85c6-9949b3b8b7be", + "pb_id":"no-id-WnzUqvYc", + "state":"South Carolina", + "city":"Location Unknown", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police Assault Suspect on Ground During Arrest", + "description":null, + "links":[ + "https:\/\/twitter.com\/track4life_bry\/status\/1268313958479532034" + ], + "data":null, + "geocoding":{ + "lat":"33.8360810", + "long":"-81.1637245" + } + }, + { + "id":"7b1bcf70-a9d6-11ea-bbf6-2169b1ebfa46", + "pb_id":"ga-atlanta-1", + "state":"Georgia", + "city":"Atlanta", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Officer body slams woman onto ground", + "description":null, + "links":[ + "https:\/\/www.cnn.com\/2020\/06\/05\/us\/atlanta-police-body-slam-woman\/index.html" + ], + "data":null, + "geocoding":{ + "lat":"33.7489954", + "long":"-84.3879824" + } + }, + { + "id":"7b1bec70-a9d6-11ea-a0b7-131f567abbd4", + "pb_id":"ga-atlanta-2", + "state":"Georgia", + "city":"Atlanta", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Officer shoves a woman with his bike", + "description":null, + "links":[ + "https:\/\/twitter.com\/ava\/status\/1266797973834395648?s=20", + "https:\/\/twitter.com\/Brittm_tv\/status\/1266497944796225538" + ], + "data":null, + "geocoding":{ + "lat":"33.7489954", + "long":"-84.3879824" + } + }, + { + "id":"7b1c0dc0-a9d6-11ea-a104-a158e62e7a76", + "pb_id":"ga-atlanta-3", + "state":"Georgia", + "city":"Atlanta", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Cops pull people out of their car, taze them", + "description":null, + "links":[ + "https:\/\/twitter.com\/danielvankirk\/status\/1266947767840063489", + "https:\/\/www.instagram.com\/p\/CA27quMhqJA\/", + "https:\/\/twitter.com\/SarahBaska\/status\/1267308455225774080?s=20", + "https:\/\/twitter.com\/Brittm_tv\/status\/1267147449577148423", + "https:\/\/www.standard.co.uk\/news\/world\/atlanta-police-officers-fired-dragging-students-car-protest-a4457371.html#gsc.tab=0" + ], + "data":null, + "geocoding":{ + "lat":"33.7489954", + "long":"-84.3879824" + } + }, + { + "id":"7b1c5500-a9d6-11ea-a382-69fc0af6cf5d", + "pb_id":"ga-atlanta-5", + "state":"Georgia", + "city":"Atlanta", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Photographer tackled to the ground by four police officers", + "description":null, + "links":[ + "https:\/\/twitter.com\/DanWolken\/status\/1266877753015570433", + "https:\/\/www.google.ca\/maps\/@33.7579387,-84.3934527,3a,75y,90.87h,90t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"33.7489954", + "long":"-84.3879824" + } + }, + { + "id":"7b1c8270-a9d6-11ea-8716-4981bd00f325", + "pb_id":"ga-lawrenceville-4", + "state":"Georgia", + "city":"Lawrenceville", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Man tased in back for speaking up after man on ground is punched in face by cop", + "description":null, + "links":[ + "https:\/\/twitter.com\/ftn_shark\/status\/1266854056506667009?s=19", + "https:\/\/twitter.com\/throneofmorac\/status\/1266870493858185217?s=09" + ], + "data":null, + "geocoding":{ + "lat":"33.9562149", + "long":"-83.9879625" + } + }, + { + "id":"7b1caef0-a9d6-11ea-97aa-0da21a1ffb54", + "pb_id":"fl-fortlauderdale-1", + "state":"Florida", + "city":"Fort Lauderdale", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police Shove a woman down to her knees", + "description":null, + "links":[ + "https:\/\/twitter.com\/thickliljawn\/status\/1267239498083110913", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gubleh\/officer_gets_confronted_by_another_officer_for\/", + "https:\/\/www.miamiherald.com\/news\/local\/crime\/article243234261.html" + ], + "data":null, + "geocoding":{ + "lat":"26.1224386", + "long":"-80.1373174" + } + }, + { + "id":"7b1ccc80-a9d6-11ea-9e9d-71e9f27c9f51", + "pb_id":"fl-fortlauderdale-2", + "state":"Florida", + "city":"Fort Lauderdale", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Law enforcement shoot a woman in the head", + "description":null, + "links":[ + "https:\/\/www.miamiherald.com\/news\/local\/community\/broward\/article243193481.html" + ], + "data":null, + "geocoding":{ + "lat":"26.1224386", + "long":"-80.1373174" + } + }, + { + "id":"7b1ce950-a9d6-11ea-8090-5718d099cc75", + "pb_id":"fl-miami-3", + "state":"Florida", + "city":"Miami", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Man tackled to ground after speaking to police", + "description":null, + "links":[ + "https:\/\/twitter.com\/BillyCorben\/status\/1267644127178563588" + ], + "data":null, + "geocoding":{ + "lat":"25.7616798", + "long":"-80.1917902" + } + }, + { + "id":"7b1d0860-a9d6-11ea-9c24-c55b8727e39d", + "pb_id":"fl-orlando-4", + "state":"Florida", + "city":"Orlando", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police use excessive force during an arrest", + "description":null, + "links":[ + "https:\/\/twitter.com\/ewcfilms\/status\/1268003421786906627" + ], + "data":null, + "geocoding":{ + "lat":"28.5383355", + "long":"-81.3792365" + } + }, + { + "id":"7b1d25a0-a9d6-11ea-b4a7-1b2708e27a08", + "pb_id":"fl-orlando-5", + "state":"Florida", + "city":"Orlando", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Police fire on protesters outside city hall", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1269017349727928320", + "https:\/\/www.google.com\/maps\/place\/29+W+South+St,+Orlando,+FL+32801,+USA\/@28.5384293,-81.3797504,20z\/data=" + ], + "data":null, + "geocoding":{ + "lat":"28.5383355", + "long":"-81.3792365" + } + }, + { + "id":"7b1d4f30-a9d6-11ea-82fe-f57b58d1ed37", + "pb_id":"fl-tampa-6", + "state":"Florida", + "city":"Tampa", + "date":"2020-06-04T00:00:00.000000Z", + "title":"One woman is pinned to the ground and another is pepper-sprayed", + "description":null, + "links":[ + "https:\/\/twitter.com\/walkin_da_talk\/status\/1268718193679499266", + "https:\/\/twitter.com\/jamiebullockk\/status\/1268658254806163460", + "https:\/\/twitter.com\/InesseC\/status\/1268912900565094401", + "https:\/\/www.google.com\/maps\/@27.9563654,-82.4569108,3a,75y,255.48h,92.17t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"27.9505750", + "long":"-82.4571776" + } + }, + { + "id":"7b1d9350-a9d6-11ea-afab-35578028f48c", + "pb_id":"nd-fargo-1", + "state":"North Dakota", + "city":"Fargo", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police using selective enforcement on black individuals", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gwm2mf\/police_using_selective_enforcement_on_protestors\/", + "https:\/\/twitter.com\/Eggsalaaad\/status\/1268223118394392576" + ], + "data":null, + "geocoding":{ + "lat":"46.8771863", + "long":"-96.7898034" + } + }, + { + "id":"7b1dc070-a9d6-11ea-b623-6f5681920fec", + "pb_id":"wi-madison-1", + "state":"Wisconsin", + "city":"Madison", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Officer pepper-sprays protestor walking backwards with arms raised", + "description":null, + "links":[ + "https:\/\/twitter.com\/NeonMarionette\/status\/1266962885957292032?s=20" + ], + "data":null, + "geocoding":{ + "lat":"43.0730517", + "long":"-89.4012302" + } + }, + { + "id":"7b1dde90-a9d6-11ea-bf59-bb9369167b7b", + "pb_id":"wi-milwaukee-2", + "state":"Wisconsin", + "city":"Milwaukee", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police restrain man using knee on neck", + "description":null, + "links":[ + "http:\/\/www.milwaukeeindependent.com\/articles\/milwaukee-common-council-calls-investigation-use-knee-police-restrain-protestor\/", + "https:\/\/old.reddit.com\/r\/gifs\/comments\/gxptyo\/june_2_2020_milwaukee_police_punch_and_knee\/", + "https:\/\/giphy.com\/gifs\/protest-milwaukee-blm-IzjGA5w04kTJTeP7Dz\/fullscreen", + "https:\/\/www.google.ca\/maps\/place\/N+6th+St+%26+W+Vliet+St,+Milwaukee,+WI+53205,+USA\/@43.0483922,-87.9188126,3a,75y,1.17h,90t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"43.0389025", + "long":"-87.9064736" + } + }, + { + "id":"7b1e2380-a9d6-11ea-abab-8fab28e71271", + "pb_id":"mn-minneapolis-14", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-26T00:00:00.000000Z", + "title":"Police shoot flashbang grenades into crowd", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/1462345700\/posts\/10220863688809651", + "https:\/\/www.facebook.com\/1462345700\/posts\/10220863812572745" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1e4040-a9d6-11ea-9a96-ef837fefd8ad", + "pb_id":"mn-minneapolis-1", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police storm gas station, attacking reporters who show press badges", + "description":null, + "links":[ + "https:\/\/twitter.com\/MichaelAdams317\/status\/1266945268567678976", + "https:\/\/twitter.com\/rsdaza\/status\/1267200011659554824", + "https:\/\/twitter.com\/MichaelAdams317\/status\/1267203751913422849", + "https:\/\/www.vice.com\/en_us\/article\/y3zd7g\/i-told-riot-cops-im-a-journalist-they-forced-me-to-the-ground-and-pepper-sprayed-me-in-the-face" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1e86a0-a9d6-11ea-96ac-af05c6d47a43", + "pb_id":"mn-minneapolis-3", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police drive by spraying", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=O3qj4cfsd7g", + "https:\/\/twitter.com\/stribrooks\/status\/1266186985041022976" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1eb0f0-a9d6-11ea-b23f-0701aaa22bde", + "pb_id":"mn-minneapolis-4", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-30T00:00:00.000000Z", + "title":"CNN Reporter arrested", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=aNuzzVpDZTY" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1edac0-a9d6-11ea-b22c-430f89c857bf", + "pb_id":"mn-minneapolis-5", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-30T00:00:00.000000Z", + "title":"WCCO photojournalist arrested", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=wmpic2NU1RM&feature=youtu.be" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1efd30-a9d6-11ea-890a-5b4d2e83f457", + "pb_id":"mn-minneapolis-15", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-30T00:00:00.000000Z", + "title":"CNN crew shot at with rubber bullets and tear gas while live on air", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/chadloder\/status\/1266962631887224837" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1f1c40-a9d6-11ea-849e-b12d6f35f8ac", + "pb_id":"mn-minneapolis-16", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shoot rubber bullets and teargas at an MSNBC reporter", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1267118696960528386" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1f3a40-a9d6-11ea-a866-5756b1eae633", + "pb_id":"mn-minneapolis-17", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Swiss journalists shot at with rubber bullets by police", + "description":null, + "links":[ + "https:\/\/www.srf.ch\/play\/tv\/news-clip\/video\/schweizer-journalisten-werden-mit-gummischrot-attackiert?id=67d44dd8-f16e-4db0-b690-799ab827956a&startTime=9", + "https:\/\/www.srf.ch\/news\/international\/pressefreiheit-unter-beschuss-schweizer-journalisten-in-den-usa-von-polizei-attackiert", + "https:\/\/www.swissinfo.ch\/eng\/minneapolis-protests-_rubber-bullets-shot-at-swiss-journalists-by-us-police-\/45808806" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1f70a0-a9d6-11ea-b281-0da239643eeb", + "pb_id":"mn-minneapolis-2", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot at a woman on her porch", + "description":null, + "links":[ + "https:\/\/twitter.com\/tkerssen\/status\/1266921821653385225" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1f9250-a9d6-11ea-b827-d915f46bf0ae", + "pb_id":"mn-minneapolis-6", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"LA-Times employee recounts getting shot", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/mollyhf\/status\/1266911382613692422", + "https:\/\/www.latimes.com\/world-nation\/story\/2020-05-30\/la-reporter-tear-gas-police" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1fbbe0-a9d6-11ea-b37a-91516f216b44", + "pb_id":"mn-minneapolis-7", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Reporter shares his experience", + "description":null, + "links":[ + "https:\/\/twitter.com\/JaredGoyette\/status\/1266961243476299778", + "https:\/\/twitter.com\/RyanFaircloth\/status\/1266967500383834114" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b1fd860-a9d6-11ea-aaf4-875d27ec7042", + "pb_id":"mn-minneapolis-8", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police slashes tires", + "description":null, + "links":[ + "https:\/\/www.motherjones.com\/anti-racism-police-protest\/2020\/06\/videos-show-cops-slashing-car-tires-at-protests-in-minneapolis\/", + "https:\/\/youtu.be\/sP7hM_sdpkQ?t=4209", + "https:\/\/twitter.com\/val_ebertz\/status\/1266975058230235137", + "https:\/\/twitter.com\/andrewkimmel\/status\/1266987126467461120?s=20", + "https:\/\/twitter.com\/andrewkimmel\/status\/1267012840197586946?s=20", + "https:\/\/lawandcrime.com\/george-floyd-death\/strategically-deflated-authorities-admit-to-slashing-tires-on-cars-belonging-to-protesters-and-journalists-in-minneapolis\/" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b203240-a9d6-11ea-b7e4-6342f22424cd", + "pb_id":"mn-minneapolis-9", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"CBS news crew shot with rubber bullets", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/chadloder\/status\/1266971884001693696", + "https:\/\/twitter.com\/MikeGeorgeCBS\/status\/1266916104951214080" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b206da0-a9d6-11ea-91c9-21619ae1f934", + "pb_id":"mn-minneapolis-10", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police throw flashbangs at reporter", + "description":null, + "links":[ + "https:\/\/twitter.com\/atrupar\/status\/1266910910137995264" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b209030-a9d6-11ea-aa31-219e5391636e", + "pb_id":"mn-minneapolis-11", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police blind a reporter with rubber bullet", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/KillerMartinis\/status\/1266618525600399361?s=19", + "https:\/\/twitter.com\/chadloder\/status\/1267059540190625792" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b20ae70-a9d6-11ea-b328-bfaba9b459a6", + "pb_id":"mn-minneapolis-12", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot Reuters reporters with rubber bullets", + "description":null, + "links":[ + "https:\/\/www.reuters.com\/article\/us-minneapolis-police-protest-update\/reuters-cameraman-hit-by-rubber-bullets-as-police-disperse-protesters-idUSKBN237050" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b20cba0-a9d6-11ea-9ea0-e1eeaaa74304", + "pb_id":"mn-minneapolis-13", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot at, threaten to arrest reporter", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=NN8ISwuiX68" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b20e820-a9d6-11ea-9f6e-97bc19b966ce", + "pb_id":"mn-minneapolis-18", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police stop SUV to driveby pepperspray protesters through window", + "description":null, + "links":[ + "https:\/\/twitter.com\/keycodez\/status\/1267235529311113216\/video\/1" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b210760-a9d6-11ea-add6-1f487ca51268", + "pb_id":"mn-minneapolis-19", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Patient care assistant reports being shot with rubber bullets while treating injured protestors", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/chadloder\/status\/1266957030285127687" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b212540-a9d6-11ea-b846-0b023ae83e44", + "pb_id":"mn-minneapolis-20", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Journalists pepper sprayed and hit with flashbangs and batons", + "description":null, + "links":[ + "https:\/\/twitter.com\/edouphoto\/status\/1267958349477249024", + "https:\/\/www.facebook.com\/356074941105769\/posts\/3020200918026478\/" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"7b215180-a9d6-11ea-871b-1f6e8704ebd8", + "pb_id":"nc-charlotte-1", + "state":"North Carolina", + "city":"Charlotte", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Law enforcement close on protesters from both sides with pepper bullets, tear gas, and flashbangs", + "description":null, + "links":[ + "https:\/\/www.instagram.com\/tv\/CA9UOKAj7MC\/" + ], + "data":null, + "geocoding":{ + "lat":"35.2270869", + "long":"-80.8431267" + } + }, + { + "id":"7b2176b0-a9d6-11ea-bd82-178dd413df40", + "pb_id":"nc-asheville-2", + "state":"North Carolina", + "city":"Asheville", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police surround approved medical station and destroy supplies", + "description":null, + "links":[ + "https:\/\/twitter.com\/AngelaMWilhelm\/status\/1268056986102444033", + "https:\/\/twitter.com\/AngelaMWilhelm\/status\/1267974081577717762", + "https:\/\/twitter.com\/daveth89\/status\/1267974555332685824", + "https:\/\/i.redd.it\/wofh339sqr251.png" + ], + "data":null, + "geocoding":{ + "lat":"35.5950581", + "long":"-82.5514869" + } + }, + { + "id":"7b21bbf0-a9d6-11ea-9d82-ef4157f03de7", + "pb_id":"nc-raleigh-3", + "state":"North Carolina", + "city":"Raleigh", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police shoot to intimidate owner of LGBTQ bar", + "description":null, + "links":[ + "https:\/\/www.instagram.com\/p\/CA51AJxH7S9", + "https:\/\/www.newsobserver.com\/news\/local\/article243202416.html", + "https:\/\/www.google.ca\/maps\/place\/Ruby+Deluxe\/@35.7751916,-78.6399548,3a,75y,200h,110t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"35.7795897", + "long":"-78.6381787" + } + }, + { + "id":"7b21f540-a9d6-11ea-b99a-95dd78301a32", + "pb_id":"in-fortwayne-1", + "state":"Indiana", + "city":"Fort Wayne", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police pepper spray protesters attempting to record them", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1266745200656990208", + "https:\/\/twitter.com\/_isabel_a\/status\/1266580681251000321" + ], + "data":null, + "geocoding":{ + "lat":"41.0792730", + "long":"-85.1393513" + } + }, + { + "id":"7b221260-a9d6-11ea-8001-3d97d00fffa2", + "pb_id":"in-fortwayne-2", + "state":"Indiana", + "city":"Fort Wayne", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police tear gas peaceful protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/blazedyukhei\/status\/1266533569029177346" + ], + "data":null, + "geocoding":{ + "lat":"41.0792730", + "long":"-85.1393513" + } + }, + { + "id":"7b223250-a9d6-11ea-a3fb-69ec24ef34d2", + "pb_id":"in-fortwayne-3", + "state":"Indiana", + "city":"Fort Wayne", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Toddler teargassed by police", + "description":null, + "links":[ + "https:\/\/wpta21.com\/2020\/05\/31\/toddler-tear-gassed-photo-goes-viral\/#.XtUVqwf8OnF.facebook" + ], + "data":null, + "geocoding":{ + "lat":"41.0792730", + "long":"-85.1393513" + } + }, + { + "id":"7b2251b0-a9d6-11ea-9b73-999a729642a3", + "pb_id":"in-fortwayne-4", + "state":"Indiana", + "city":"Fort Wayne", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Protester hit in the face with a gas cannister", + "description":null, + "links":[ + "https:\/\/i.redd.it\/4qzvp2gd54251.jpg", + "https:\/\/twitter.com\/notbalin\/status\/1266972999296704513", + "https:\/\/mobile.twitter.com\/chadloder\/status\/1267279165230743553\/photo\/2" + ], + "data":null, + "geocoding":{ + "lat":"41.0792730", + "long":"-85.1393513" + } + }, + { + "id":"7b22b290-a9d6-11ea-9e45-7f8285173a94", + "pb_id":"in-indianapolis-5", + "state":"Indiana", + "city":"Indianapolis", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police confiscate medical supplies from medical station", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/AlexandraIndy\/videos\/10219444419838711" + ], + "data":null, + "geocoding":{ + "lat":"39.7684030", + "long":"-86.1580680" + } + }, + { + "id":"7b22d6f0-a9d6-11ea-95d8-539f03d3e3c1", + "pb_id":"in-indianapolis-6", + "state":"Indiana", + "city":"Indianapolis", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police beat woman with batons and shoot pepper balls, shove another to the ground", + "description":null, + "links":[ + "https:\/\/www.washingtonpost.com\/national\/protests-police-brutality-video\/2020\/06\/05\/a9e66568-a768-11ea-b473-04905b1af82b_story.html", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/guffju\/indianapolis_police_on_women_rights\/", + "https:\/\/twitter.com\/greg_doucette\/status\/1268391718086422528" + ], + "data":null, + "geocoding":{ + "lat":"39.7684030", + "long":"-86.1580680" + } + }, + { + "id":"7b231130-a9d6-11ea-bf95-2f5e940e4425", + "pb_id":"in-lafayette-7", + "state":"Indiana", + "city":"Lafayette", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Officer drops tear gas into peaceful protest without warning", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/ctchoula\/videos\/10163707272210302\/", + "https:\/\/scontent-ort2-2.xx.fbcdn.net\/v\/t1.0-9\/101254362_755196441884833_7192544661301362688_n.jpg?_nc_cat=103&_nc_sid=110474&_nc_ohc=wjDZM1x0RLYAX9sKPft&_nc_ht=scontent-ort2-2.xx&oh=606a9dbf10d30a680c5dcb2c8ae8d7ce&oe=5EFD314B" + ], + "data":null, + "geocoding":{ + "lat":"40.4167022", + "long":"-86.8752869" + } + }, + { + "id":"7b233ee0-a9d6-11ea-a87f-c19d6554a0d3", + "pb_id":"or-eugene-1", + "state":"Oregon", + "city":"Eugene", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Officer shoots projectile from moving vehicle", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Eugene\/comments\/gurr9r\/police_shoot_projectile_from_moving_vehicle_hit\/", + "https:\/\/streamable.com\/9h2tk3" + ], + "data":null, + "geocoding":{ + "lat":"44.0520691", + "long":"-123.0867536" + } + }, + { + "id":"7b236810-a9d6-11ea-a201-a1b95fdc0a09", + "pb_id":"or-portland-2", + "state":"Oregon", + "city":"Portland", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Officer pepper-sprays protestor", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=01oWE24O9Zw&feature=emb_title" + ], + "data":null, + "geocoding":{ + "lat":"45.5051064", + "long":"-122.6750261" + } + }, + { + "id":"7b2391c0-a9d6-11ea-a64e-310f1aebb757", + "pb_id":"or-portland-3", + "state":"Oregon", + "city":"Portland", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police appear to tear-gas a homeless camp", + "description":null, + "links":[ + "https:\/\/twitter.com\/AstuteAF\/status\/1268125169890938882" + ], + "data":null, + "geocoding":{ + "lat":"45.5051064", + "long":"-122.6750261" + } + }, + { + "id":"7b23ae20-a9d6-11ea-9c46-ff4e393fda58", + "pb_id":"or-portland-4", + "state":"Oregon", + "city":"Portland", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police deploy shoot teargas\/flashbang grenade into a crowd", + "description":null, + "links":[ + "https:\/\/twitter.com\/matcha_chai\/status\/1268043556913987584" + ], + "data":null, + "geocoding":{ + "lat":"45.5051064", + "long":"-122.6750261" + } + }, + { + "id":"7b23ce40-a9d6-11ea-9696-bbb7b8874b76", + "pb_id":"or-portland-5", + "state":"Oregon", + "city":"Portland", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police launch teargas into a crowd", + "description":null, + "links":[ + "https:\/\/twitter.com\/MrAndyNgo\/status\/1268224547272003585" + ], + "data":null, + "geocoding":{ + "lat":"45.5051064", + "long":"-122.6750261" + } + }, + { + "id":"7b23eb40-a9d6-11ea-b666-cb930ca52803", + "pb_id":"or-portland-6", + "state":"Oregon", + "city":"Portland", + "date":"2020-06-06T00:00:00.000000Z", + "title":"Officer attacks photographer with baton and pepper sprays him", + "description":null, + "links":[ + "https:\/\/twitter.com\/chadloder\/status\/1269526243138928642", + "https:\/\/twitter.com\/TVAyyyy\/status\/1269526590456643584", + "https:\/\/twitter.com\/DonovanFarley\/status\/1269701897377603584" + ], + "data":null, + "geocoding":{ + "lat":"45.5051064", + "long":"-122.6750261" + } + }, + { + "id":"7b2407d0-a9d6-11ea-8211-ff1cf4ffbc30", + "pb_id":"or-portland-7", + "state":"Oregon", + "city":"Portland", + "date":"2020-06-06T00:00:00.000000Z", + "title":"Officer attacks photographer with baton and pepper sprays him", + "description":null, + "links":[ + "https:\/\/twitter.com\/chadloder\/status\/1269526243138928642", + "https:\/\/twitter.com\/TVAyyyy\/status\/1269526590456643584", + "https:\/\/twitter.com\/DonovanFarley\/status\/1269701897377603584" + ], + "data":null, + "geocoding":{ + "lat":"45.5051064", + "long":"-122.6750261" + } + }, + { + "id":"7b2447b0-a9d6-11ea-8e02-65a313cf0895", + "pb_id":"ma-boston-1", + "state":"Massachusetts", + "city":"Boston", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police beat an innocent man crossing the street with batons.", + "description":null, + "links":[ + "https:\/\/twitter.com\/RimeAndTreason\/status\/1267268090351489024" + ], + "data":null, + "geocoding":{ + "lat":"42.3600825", + "long":"-71.0588801" + } + }, + { + "id":"7b246640-a9d6-11ea-9440-971ac3a96201", + "pb_id":"ma-boston-2", + "state":"Massachusetts", + "city":"Boston", + "date":"1900-01-01T00:00:00.000000Z", + "title":"A cop takes someone's protest sign and destroys it.", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=egvPF75vWOA" + ], + "data":null, + "geocoding":{ + "lat":"42.3600825", + "long":"-71.0588801" + } + }, + { + "id":"7b248400-a9d6-11ea-beaf-7d49c60a72a5", + "pb_id":"ma-worcester-3", + "state":"Massachusetts", + "city":"Worcester", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Riot police fire on protestors without provocation", + "description":null, + "links":[ + "https:\/\/twitter.com\/sebishop99\/status\/1267913459938844673" + ], + "data":null, + "geocoding":{ + "lat":"42.2625932", + "long":"-71.8022934" + } + }, + { + "id":"7b24a130-a9d6-11ea-8b47-890589eaf134", + "pb_id":"ma-worcester-4", + "state":"Massachusetts", + "city":"Worcester", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Numerous eyewitness report being tackled by police officers", + "description":null, + "links":[ + "https:\/\/twitter.com\/sebishop99\/status\/1267948306182922245", + "https:\/\/twitter.com\/sebishop99\/status\/1267950415443787777", + "https:\/\/twitter.com\/sebishop99\/status\/1267968189675253760" + ], + "data":null, + "geocoding":{ + "lat":"42.2625932", + "long":"-71.8022934" + } + }, + { + "id":"7b24f170-a9d6-11ea-9f73-1315a5f222a6", + "pb_id":"ma-worcester-5", + "state":"Massachusetts", + "city":"Worcester", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Riot police fire on protestors without provocation", + "description":null, + "links":[ + "https:\/\/twitter.com\/sebishop99\/status\/1267913459938844673" + ], + "data":null, + "geocoding":{ + "lat":"42.2625932", + "long":"-71.8022934" + } + }, + { + "id":"7b251190-a9d6-11ea-9546-4b4b45021b89", + "pb_id":"ma-worcester-6", + "state":"Massachusetts", + "city":"Worcester", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Numerous eyewitness report being tackled by police officers", + "description":null, + "links":[ + "https:\/\/twitter.com\/sebishop99\/status\/1267948306182922245", + "https:\/\/twitter.com\/sebishop99\/status\/1267950415443787777", + "https:\/\/twitter.com\/sebishop99\/status\/1267968189675253760" + ], + "data":null, + "geocoding":{ + "lat":"42.2625932", + "long":"-71.8022934" + } + }, + { + "id":"7b2550c0-a9d6-11ea-8d66-974feb39e1dd", + "pb_id":"oh-cincinnati-1", + "state":"Ohio", + "city":"Cincinnati", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police disperse peaceful protest with tear gas, flash bangs and pepper bullets", + "description":null, + "links":[ + "https:\/\/twitter.com\/kodyfishertv\/status\/1266901735198638082" + ], + "data":null, + "geocoding":{ + "lat":"39.1031182", + "long":"-84.5120196" + } + }, + { + "id":"7b256ed0-a9d6-11ea-8f58-9db8ae3aac48", + "pb_id":"oh-cincinnati-2", + "state":"Ohio", + "city":"Cincinnati", + "date":"2020-05-31T00:00:00.000000Z", + "title":"First hand account of police violently dispersing crowds", + "description":null, + "links":[ + "https:\/\/touch.facebook.com\/story.php?story_fbid=10157718199384132&id=697759131&ref=bookmarks" + ], + "data":null, + "geocoding":{ + "lat":"39.1031182", + "long":"-84.5120196" + } + }, + { + "id":"7b258bd0-a9d6-11ea-b663-d1f879247f4f", + "pb_id":"oh-cleveland-1", + "state":"Ohio", + "city":"Cleveland", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Officer swings baton at protesters, beats one who is trying to keep crowd back", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1267114065819770880" + ], + "data":null, + "geocoding":{ + "lat":"41.4993200", + "long":"-81.6943605" + } + }, + { + "id":"7b25a950-a9d6-11ea-9249-6f0edc37211b", + "pb_id":"oh-columbus-3", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Peaceful protester sprayed in the face with mace", + "description":null, + "links":[ + "https:\/\/twitter.com\/rottenstrwbry\/status\/1266805467990446081" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b25c860-a9d6-11ea-9d03-452ffc8887d8", + "pb_id":"oh-columbus-4", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police pepperspray protesters for chanting", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1266878189537824772" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b260a70-a9d6-11ea-bb75-01172d21b66d", + "pb_id":"oh-columbus-5", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police pepper-spray a medic", + "description":null, + "links":[ + "https:\/\/twitter.com\/Katy38105157\/status\/1266816739444166656", + "https:\/\/twitter.com\/SAColumbus\/status\/1266867613872857094" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b2627d0-a9d6-11ea-835b-5f43773e08d3", + "pb_id":"oh-columbus-6", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police mace an innocent woman", + "description":null, + "links":[ + "https:\/\/twitter.com\/lalaitskelcey2\/status\/1266821476122058752", + "https:\/\/twitter.com\/MarioLeUgly\/status\/1266933807929798656" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b2649e0-a9d6-11ea-9f96-5f9de605522a", + "pb_id":"oh-columbus-7", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police intimidating campus protesters by driving car towards them", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gtq7i4\/columbus_police_officer_trying_to_use_his_car_to\/" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b267670-a9d6-11ea-9069-612dd64ddbd2", + "pb_id":"oh-columbus-8", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police pepper spray two kneeling protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/DabinDhillo\/status\/1266892095702392832", + "https:\/\/twitter.com\/taesvangogh\/status\/1266907922308558848" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b26a220-a9d6-11ea-ae8e-9d77670ec096", + "pb_id":"oh-columbus-9", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police pepper spray African-American photographer", + "description":null, + "links":[ + "https:\/\/i.redd.it\/4ix8f3j6dy151.jpg", + "https:\/\/old.reddit.com\/r\/Columbus\/comments\/gtk192\/photographer_being_pepper_sprayed_by_police\/", + "https:\/\/www.instagram.com\/p\/CA03DsTByLn\/" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b26c1c0-a9d6-11ea-b4b6-3b5abb20b1d3", + "pb_id":"oh-columbus-10", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police pepperspray sitting protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1267102580070592512" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b26ebd0-a9d6-11ea-9180-ef3612dbdbfa", + "pb_id":"oh-columbus-11", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Woman holding a sign is shot with rubber bullets", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/chadloder\/status\/1267113315613806592", + "https:\/\/twitter.com\/greg_doucette\/status\/1267122343454953472" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b272750-a9d6-11ea-affc-d92280441a32", + "pb_id":"oh-columbus-12", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Protestors kept in a courtyard with no bathroom breaks, water, or food, for nine hours", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gusqeg\/video_from_inside_the_concrete_courtyard_peaceful\/?utm_source=share&utm_medium=ios_app&utm_name=iossmf", + "https:\/\/i.imgur.com\/mECPaWe.jpg" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b275e40-a9d6-11ea-8f02-25f886cdfa1c", + "pb_id":"oh-columbus-13", + "state":"Ohio", + "city":"Columbus", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police push and pepper spray reporters from The Lantern newspaper", + "description":null, + "links":[ + "https:\/\/www.thelantern.com\/2020\/06\/columbus-mayor-police-chief-address-protest-policing-pepper-spray-of-lantern-journalists\/", + "https:\/\/twitter.com\/TheLantern\/status\/1267644471317090305", + "https:\/\/twitter.com\/maevewalsh27\/status\/1267646128289447939" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b2790a0-a9d6-11ea-b3ee-7f0e4bb7b091", + "pb_id":"oh-columbus-14", + "state":"Ohio", + "city":"Columbus", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Officer refuses to give diabetic arrestee her insulin back", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gvte8e\/cop_refuses_to_give_diabetic_woman_her_insulin\/", + "https:\/\/www.tiktok.com\/@zestaz\/video\/6833912697436867845", + "https:\/\/www.tiktok.com\/@zestaz\/video\/6833913925231185158" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b27c4f0-a9d6-11ea-8661-492e7b6a70b6", + "pb_id":"oh-columbus-15", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Officer chases reporter and pepper sprays her", + "description":null, + "links":[ + "https:\/\/pressfreedomtracker.us\/all-incidents\/student-journalist-chased-pepper-sprayed-during-protests-columbus\/", + "https:\/\/twitter.com\/julialwashere\/status\/1266730657436315649" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b280100-a9d6-11ea-98de-6fed225a9462", + "pb_id":"oh-columbus-16", + "state":"Ohio", + "city":"Columbus", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Officer refuses to give diabetic arrestee her insulin back", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gvte8e\/cop_refuses_to_give_diabetic_woman_her_insulin\/", + "https:\/\/www.tiktok.com\/@zestaz\/video\/6833912697436867845", + "https:\/\/www.tiktok.com\/@zestaz\/video\/6833913925231185158" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"7b283a80-a9d6-11ea-8c0a-317557587cef", + "pb_id":"tx-austin-1", + "state":"Texas", + "city":"Austin", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police critically injure 20 year old black protester during protests against police violence", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Bad_Cop_No_Donut\/comments\/gwd37n\/a_black_20yearold_student_justin_howell_is_in\/", + "https:\/\/www.texastribune.org\/2020\/06\/01\/austin-police-george-floyd-mike-ramos\/", + "https:\/\/www.kvue.com\/article\/news\/local\/austin-protester-police-struck-by-less-lethal-bean-bag-round\/269-430f90a2-b6c1-4ee3-9d9c-639faf132100", + "https:\/\/www.cnn.com\/2020\/06\/07\/us\/austin-texas-police-bean-bag-20-year-old-injured\/index.html" + ], + "data":null, + "geocoding":{ + "lat":"30.2671530", + "long":"-97.7430608" + } + }, + { + "id":"7b287e90-a9d6-11ea-b64c-970a116a97b0", + "pb_id":"tx-austin-2", + "state":"Texas", + "city":"Austin", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police assault protesters", + "description":null, + "links":[ + "https:\/\/gfycat.com\/tautimaginativedore" + ], + "data":null, + "geocoding":{ + "lat":"30.2671530", + "long":"-97.7430608" + } + }, + { + "id":"7b28a2f0-a9d6-11ea-8e83-3123b5403768", + "pb_id":"tx-austin-3", + "state":"Texas", + "city":"Austin", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shoot non-violent protestor in the head", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/guwc4y\/austin_tx_nonviolent_protestor_shot_in_the_head\/", + "https:\/\/www.instagram.com\/p\/CA6TCIGnuWm\/", + "https:\/\/www.youtube.com\/watch?v=-BGyTi-KdKc", + "https:\/\/streamable.com\/o1uqgy", + "https:\/\/cbsaustin.com\/news\/local\/austin-teen-hospitalized-with-head-injury-after-police-shoot-him-with-bean-bags-at-protest" + ], + "data":null, + "geocoding":{ + "lat":"30.2671530", + "long":"-97.7430608" + } + }, + { + "id":"7b28f680-a9d6-11ea-ae39-c17d00564b22", + "pb_id":"tx-austin-4", + "state":"Texas", + "city":"Austin", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police use tear gas & rubber bullets on protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/highsettler\/status\/1266876480929349633", + "https:\/\/imgur.com\/gallery\/VKuIIvu", + "https:\/\/gfycat.com\/weirdthankfulgnatcatcher" + ], + "data":null, + "geocoding":{ + "lat":"30.2671530", + "long":"-97.7430608" + } + }, + { + "id":"7b292cc0-a9d6-11ea-9744-1399e5f9d14e", + "pb_id":"tx-austin-5", + "state":"Texas", + "city":"Austin", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police open fire on crowd with rubber bullets", + "description":null, + "links":[ + "https:\/\/twitter.com\/ironfront7\/status\/1267133400156196870" + ], + "data":null, + "geocoding":{ + "lat":"30.2671530", + "long":"-97.7430608" + } + }, + { + "id":"7b294a20-a9d6-11ea-87fc-6bd96a904869", + "pb_id":"tx-austin-6", + "state":"Texas", + "city":"Austin", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police open fire on crowd after a protester throws water on them", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gwfu8e\/apd_gets_water_splashed_on_them_and_immediately\/", + "https:\/\/tuckbot.tv\/#\/watch\/gwfu8e", + "https:\/\/peertube.live\/videos\/watch\/320ea302-9806-44c0-843e-49d8486c423f" + ], + "data":null, + "geocoding":{ + "lat":"30.2671530", + "long":"-97.7430608" + } + }, + { + "id":"7b298940-a9d6-11ea-8b4e-5b33c507ed23", + "pb_id":"tx-austin-7", + "state":"Texas", + "city":"Austin", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police spray a man in the face while he stands still ~3 feet away from them.", + "description":null, + "links":[ + "https:\/\/old.reddit.com\/r\/Bad_Cop_No_Donut\/comments\/guhgfq\/please_let_others_see_this_this_guy_did_not\/", + "https:\/\/twitter.com\/Grits4Breakfast\/status\/1267128210455588865" + ], + "data":null, + "geocoding":{ + "lat":"30.2671530", + "long":"-97.7430608" + } + }, + { + "id":"7b29b400-a9d6-11ea-a50e-01f2c67b35ff", + "pb_id":"tx-austin-8", + "state":"Texas", + "city":"Austin", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police fire upon protesters seeking medical help", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gvjjwg\/volunteer_medics_advised_by_police_to_bring_a\/", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gwbbjs\/protestor_is_shot_in_head_with_rubber_bullet\/", + "http:\/\/www.thebatt.com\/opinion\/opinion-his-name-is-justin-howell\/article_93a79c44-a5b6-11ea-aa54-ebc0da33cc35.html?fbclid=IwAR11FqXr9dRCKo-ohfeBoO9FdYFRG2uon0nqAkxKO5gZuL_-4EzgukAGcBs" + ], + "data":null, + "geocoding":{ + "lat":"30.2671530", + "long":"-97.7430608" + } + }, + { + "id":"7b29eec0-a9d6-11ea-b2e0-c3fcdf8c1e57", + "pb_id":"tx-baytown-9", + "state":"Texas", + "city":"Baytown", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police officer tackles and knees man on the ground", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gw2dpw\/cop_in_baytown_tx_pulls_over_black_man_white_man\/", + "https:\/\/www.facebook.com\/isaiah.benavides.94\/videos\/2811815772219886\/" + ], + "data":null, + "geocoding":{ + "lat":"29.7355047", + "long":"-94.9774274" + } + }, + { + "id":"7b2a1840-a9d6-11ea-9b2c-03ebd9e7d656", + "pb_id":"tx-houston-10", + "state":"Texas", + "city":"Houston", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police trample protester with horse", + "description":null, + "links":[ + "https:\/\/twitter.com\/vikthewild\/status\/1266538354939756544", + "https:\/\/abc13.com\/hpd-uns-over-girl-police-on-horse-tramples-protester-george-floyd\/6223240\/" + ], + "data":null, + "geocoding":{ + "lat":"29.7604267", + "long":"-95.3698028" + } + }, + { + "id":"7b2a49a0-a9d6-11ea-97af-2f0047d05b5d", + "pb_id":"tx-houston-11", + "state":"Texas", + "city":"Houston", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Officers shove a woman to the pavement", + "description":null, + "links":[ + "https:\/\/twitter.com\/AbkTrauma\/status\/1266511972524269569" + ], + "data":null, + "geocoding":{ + "lat":"29.7604267", + "long":"-95.3698028" + } + }, + { + "id":"7b2a6810-a9d6-11ea-8c9a-03cb9ce690a0", + "pb_id":"tx-dallas-12", + "state":"Texas", + "city":"Dallas", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shoot unarmed woman in the face with a rubber bullet", + "description":null, + "links":[ + "https:\/\/twitter.com\/KevinRKrause\/status\/1266898396339675137", + "https:\/\/i.redd.it\/ns0uj557x0251.jpg", + "https:\/\/twitter.com\/greg_doucette\/status\/1267109272342736896" + ], + "data":null, + "geocoding":{ + "lat":"32.7766642", + "long":"-96.7969879" + } + }, + { + "id":"7b2a9fd0-a9d6-11ea-8bc5-673e493eaa14", + "pb_id":"tx-dallas-13", + "state":"Texas", + "city":"Dallas", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police use flashbangs and tear gas on protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/xtranai\/status\/1266898175568338945" + ], + "data":null, + "geocoding":{ + "lat":"32.7766642", + "long":"-96.7969879" + } + }, + { + "id":"7b2ac230-a9d6-11ea-8832-6b7f20732e64", + "pb_id":"no-id-lur0NAfR", + "state":"Texas", + "city":"Dallas", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Man shot in the eye", + "description":null, + "links":[ + "https:\/\/twitter.com\/HERCGTH\/status\/1266870616570900480", + "https:\/\/www.wfaa.com\/article\/news\/local\/dallas-county\/dallas-police-investigating-possible-use-of-force-incidents-saturday\/287-1d3851d2-656c-4d40-8eac-7deac44ddf2d" + ], + "data":null, + "geocoding":{ + "lat":"32.7766642", + "long":"-96.7969879" + } + }, + { + "id":"7b2aecd0-a9d6-11ea-8743-0f693d2793cf", + "pb_id":"tx-dallas-14", + "state":"Texas", + "city":"Dallas", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police maneuver protestors onto bridge and fire tear gas and rubber bullets", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gx9a5n\/these_protests_took_place_on_june_2nd_in_dallas\/", + "https:\/\/www.google.com\/maps\/place\/Margaret+Hunt+Hill+Bridge,+Dallas,+TX,+USA\/@32.781075,-96.8186896,15z\/data=" + ], + "data":null, + "geocoding":{ + "lat":"32.7766642", + "long":"-96.7969879" + } + }, + { + "id":"7b2b16b0-a9d6-11ea-8c38-85d7aed889b3", + "pb_id":"tx-sanantonio-15", + "state":"Texas", + "city":"San Antonio", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot man filming them with what were allegedly rubber bullets", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gu3s6j\/police_shoots_protestor_for_no_reason\/", + "https:\/\/tuckbot.tv\/#\/watch\/gu3s6j" + ], + "data":null, + "geocoding":{ + "lat":"29.4241219", + "long":"-98.4936282" + } + }, + { + "id":"7b2b4240-a9d6-11ea-be0b-5b8504d5c0dd", + "pb_id":"ne-omaha-1", + "state":"Nebraska", + "city":"Omaha", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police Mace, shoot pepper bullets at protesters sitting on the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/XruthxNthr\/status\/1266903223220097024" + ], + "data":null, + "geocoding":{ + "lat":"41.2565369", + "long":"-95.9345034" + } + }, + { + "id":"7b2b5f80-a9d6-11ea-bdff-f77937397115", + "pb_id":"ne-omaha-2", + "state":"Nebraska", + "city":"Omaha", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Peaceful protestors arrested for breaking curfew", + "description":null, + "links":[ + "https:\/\/twitter.com\/reecereports\/status\/1267629669093978117" + ], + "data":null, + "geocoding":{ + "lat":"41.2565369", + "long":"-95.9345034" + } + }, + { + "id":"7b2b80d0-a9d6-11ea-87fd-b1b80b9958e5", + "pb_id":"dc-dc-1", + "state":"Washington DC", + "city":"DC", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Riot Police rams shield into BBC cameraman", + "description":null, + "links":[ + "https:\/\/twitter.com\/AleemMaqbool\/status\/1267319521486004225?s=20", + "https:\/\/www.bbc.co.uk\/news\/av\/world-us-canada-52884888\/george-floyd-protests-police-charge-at-bbc-cameraman-near-white-house" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2bb720-a9d6-11ea-92c4-fb2bcb94dd40", + "pb_id":"dc-dc-2", + "state":"Washington DC", + "city":"DC", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Australian news crew and protestors attacked by police", + "description":null, + "links":[ + "https:\/\/7news.com.au\/sunrise\/on-the-show\/scary-moment-as-sunrise-reporter-caught-up-in-us-violence-c-1073136", + "https:\/\/www.abc.net.au\/news\/2020-06-02\/channel-7-journalists-assaulted-police-george-floyd-protesters\/12312056", + "https:\/\/twitter.com\/ASB_Breaking\/status\/1267596043870486528", + "https:\/\/twitter.com\/i\/status\/1267597024096137217", + "https:\/\/twitter.com\/i\/status\/1267606685767667712", + "https:\/\/v.redd.it\/qf9vf0hdrd251", + "https:\/\/peertube.live\/videos\/watch\/1713b881-a750-45a0-9c6c-f066ebcac484", + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gvqjjv\/nsfl_clearer_footage_of_guy_hit_by_shield_blood\/" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2c3420-a9d6-11ea-b238-8fa6491d8d8f", + "pb_id":"dc-dc-3", + "state":"Washington DC", + "city":"DC", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Protestors are quickly and violently pushed out of Lafayette Square", + "description":null, + "links":[ + "https:\/\/www.nytimes.com\/2020\/06\/02\/us\/politics\/trump-walk-lafayette-square.html", + "https:\/\/www.cnn.com\/2020\/06\/02\/politics\/trump-white-house-protest-police-church-photo-op\/index.html", + "https:\/\/www.wusa9.com\/article\/news\/local\/dc\/lafayette-square-washington-dc-protests-st-johns-church\/65-f76d9753-8d99-42df-b02d-99d11a427595", + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gvpqoz\/nsfl_hit_by_riot_shield_blood_gushes_out_of_guys\/", + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gvpgpz\/found_both_videos_of_the_dc_event_i_know_people\/", + "https:\/\/twitter.com\/nytimes\/status\/1267638330654625794" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2c9730-a9d6-11ea-93f1-f5257a67ea06", + "pb_id":"dc-dc-4", + "state":"Washington DC", + "city":"DC", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Officer fires tear gas cannister at protestor's head", + "description":null, + "links":[ + "https:\/\/mobile.twitter.com\/chadloder\/status\/1267377374066167808" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2cb520-a9d6-11ea-ae30-979f018bef82", + "pb_id":"dc-dc-5", + "state":"Washington DC", + "city":"DC", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police violence outside the White House", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/guvwgo\/trump_gives_a_speech_about_protecting_peaceful\/?utm_source=share&utm_medium=ios_app&utm_name=iossmf" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2cd240-a9d6-11ea-86b7-c7cea0733d9a", + "pb_id":"no-id-UnUVN8Jm", + "state":"Washington DC", + "city":"DC", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Law enforcement officers fire rubber bullets into crowd, pepper-spray kneeling protestor and CNN crew", + "description":null, + "links":[ + "https:\/\/twitter.com\/MarkIronsMedia\/status\/1268046417865715713", + "https:\/\/twitter.com\/MarkIronsMedia\/status\/1268062053182443522", + "https:\/\/twitter.com\/gifdsports\/status\/1268041853196275712" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2d0a10-a9d6-11ea-952e-7b13e37168c1", + "pb_id":"no-id-0g2OEWDS", + "state":"Washington DC", + "city":"DC", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Law enforcement officers throw stinger grenades at peaceful protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1268297598856765441", + "https:\/\/twitter.com\/greg_doucette\/status\/1268297598856765441" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2d3390-a9d6-11ea-8bc3-0f0f3a626fca", + "pb_id":"dc-dc-6", + "state":"Washington DC", + "city":"DC", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Man who sheltered protestors discusses law enforcement officers shooting tear gas into his house", + "description":null, + "links":[ + "https:\/\/twitter.com\/suckmyunicornD\/status\/1267767217392934917", + "https:\/\/dcist.com\/story\/20\/06\/02\/dupont-dc-home-protest-rahul-dubey\/" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2d6110-a9d6-11ea-bb48-ebc3b420941c", + "pb_id":"dc-dc-7", + "state":"Washington DC", + "city":"DC", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Police charge peaceful crowd, beat them with shields", + "description":null, + "links":[ + "https:\/\/twitter.com\/WestofHereFox\/status\/1267615709791731713" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2d8000-a9d6-11ea-a15f-b3cc9b2e2d07", + "pb_id":"dc-dc-8", + "state":"Washington DC", + "city":"DC", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police fire into crowd hitting one protester", + "description":null, + "links":[ + "https:\/\/twitter.com\/i\/status\/1269859559859871744" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"7b2da270-a9d6-11ea-8dda-81f69e476f02", + "pb_id":"al-huntsville-1", + "state":"Alabama", + "city":"Huntsville", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Protester falls and is stepped on", + "description":null, + "links":[ + "https:\/\/twitter.com\/ETfonehome97\/status\/1267657232411435008" + ], + "data":null, + "geocoding":{ + "lat":"34.7303688", + "long":"-86.5861037" + } + }, + { + "id":"7b2dc400-a9d6-11ea-abf3-013e3a59a1cc", + "pb_id":"al-huntsville-2", + "state":"Alabama", + "city":"Huntsville", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police officer pepper sprays protestors for no reason", + "description":null, + "links":[ + "https:\/\/twitter.com\/bitchthot420\/status\/1268350308398268416" + ], + "data":null, + "geocoding":{ + "lat":"34.7303688", + "long":"-86.5861037" + } + }, + { + "id":"7b2de240-a9d6-11ea-b792-2f0a39fe62d9", + "pb_id":"al-huntsville-3", + "state":"Alabama", + "city":"Huntsville", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police tear gas reporters", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1268397070563414016" + ], + "data":null, + "geocoding":{ + "lat":"34.7303688", + "long":"-86.5861037" + } + }, + { + "id":"7b2dff30-a9d6-11ea-b4c4-7ff208aeffe1", + "pb_id":"al-huntsville-4", + "state":"Alabama", + "city":"Huntsville", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police preemptively tear gas peaceful protestors", + "description":null, + "links":[ + "https:\/\/www.alreporter.com\/2020\/06\/03\/huntsville-police-deploy-tear-gas-rubber-bullets-on-protesters\/" + ], + "data":null, + "geocoding":{ + "lat":"34.7303688", + "long":"-86.5861037" + } + }, + { + "id":"7b2e1ee0-a9d6-11ea-bc72-733b30071966", + "pb_id":"al-huntsville-5", + "state":"Alabama", + "city":"Huntsville", + "date":"2020-06-05T00:00:00.000000Z", + "title":"Police fire rubber bullets on dispersing crowd", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gyo2fh\/huntsville_al_woman_documents_herself_struggling\/" + ], + "data":null, + "geocoding":{ + "lat":"34.7303688", + "long":"-86.5861037" + } + }, + { + "id":"7b2e3c70-a9d6-11ea-8bb0-db73cc210111", + "pb_id":"il-chicago-2", + "state":"Illinois", + "city":"Chicago", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Protester shot in head with rubber bullet", + "description":null, + "links":[ + "https:\/\/twitter.com\/LUVRGRLLANI\/status\/1266866301001179136" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"7b2e5910-a9d6-11ea-aadf-3d8606bce835", + "pb_id":"il-chicago-3", + "state":"Illinois", + "city":"Chicago", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police harass and assault John Cusack", + "description":null, + "links":[ + "https:\/\/twitter.com\/johncusack\/status\/1266938983575101441" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"7b2e7940-a9d6-11ea-b90d-439ca0c118e0", + "pb_id":"il-chicago-4", + "state":"Illinois", + "city":"Chicago", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police pull black women out of the car and throw them to the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/cruzzzyc\/status\/1267185423333199874", + "https:\/\/twitter.com\/AdrienneWrites\/status\/1267534983054254081", + "https:\/\/blockclubchicago.org\/2020\/06\/03\/black-women-pulled-from-car-kneeled-on-by-chicago-police-officers-outside-northwest-side-mall-i-was-scared-for-my-life\/", + "https:\/\/chicago.cbslocal.com\/2020\/06\/03\/police-drag-women-out-of-car-outside-brickyard-mall-woman-says-officer-put-knee-on-neck\/" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"7b2eb470-a9d6-11ea-a626-c1490a01ed80", + "pb_id":"il-chicago-5", + "state":"Illinois", + "city":"Chicago", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police pepperspray reporter for recording", + "description":null, + "links":[ + "https:\/\/twitter.com\/JCB_Journo\/status\/1266897672545480706" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"7b2ed3e0-a9d6-11ea-a88e-8741b7bd4c18", + "pb_id":"il-chicago-6", + "state":"Illinois", + "city":"Chicago", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Cops hit Chicago Police Board President", + "description":null, + "links":[ + "https:\/\/news.wttw.com\/2020\/06\/05\/police-board-president-officers-struck-me-5-times-their-batons-during-protest" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"7b2ef3a0-a9d6-11ea-8327-5998420d258e", + "pb_id":"il-chicago-7", + "state":"Illinois", + "city":"Chicago", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Video showing CPD officer punching protester in Uptown under investigation", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?time_continue=44&v=_urY-W8otNA", + "https:\/\/chicago.suntimes.com\/crime\/2020\/6\/3\/21279501\/police-video-cpd-officer-punch-protester-uptown-investigation-copa" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"7b2f2840-a9d6-11ea-b68d-e9fb55c58f5a", + "pb_id":"il-chicago-8", + "state":"Illinois", + "city":"Chicago", + "date":"2020-06-01T00:00:00.000000Z", + "title":"CPD chase down protester on TV", + "description":null, + "links":[ + "https:\/\/twitter.com\/BLMChi\/status\/1267486699321544704" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"7b2f46c0-a9d6-11ea-b023-e9d3cdd6e0e9", + "pb_id":"il-joliet-1", + "state":"Illinois", + "city":"Joliet", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Officers grabs someone by the neck then more cops pile on", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=rllO2sdj1Ek", + "https:\/\/twitter.com\/OrozcoJustina\/status\/1268262843801010179", + "https:\/\/www.chicagotribune.com\/news\/breaking\/ct-joliet-mayor-video-fallout-20200606-zeidd3u5xbadxfoedmfkp22akm-story.html" + ], + "data":null, + "geocoding":{ + "lat":"41.5250310", + "long":"-88.0817251" + } + }, + { + "id":"7b2f6690-a9d6-11ea-9948-6702f39054e4", + "pb_id":"co-coloradosprings-1", + "state":"Colorado", + "city":"Colorado Springs", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Multiple cops pin man to ground while repeatedly punching him", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/Shawn.R.Russ\/videos\/10221345617964005\/", + "https:\/\/www.kktv.com\/content\/news\/Colorado-Springs-police-issue-statement-following-use-of-force-arrest-during-protest-570969681.html" + ], + "data":null, + "geocoding":{ + "lat":"38.8338816", + "long":"-104.8213634" + } + }, + { + "id":"7b2f9940-a9d6-11ea-80cd-5987f3787ab0", + "pb_id":"co-denver-2", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police pepperspray people trying to record", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1266758227930333188", + "https:\/\/twitter.com\/Dizzle14Double\/status\/1266615473816260609", + "https:\/\/twitter.com\/SaltMagazine_\/status\/1266634027257098240" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b2fb750-a9d6-11ea-957e-f9bbde558710", + "pb_id":"co-denver-3", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Denver law enforcement shoot at reporters", + "description":null, + "links":[ + "https:\/\/twitter.com\/AdiGTV\/status\/1266554320717099008" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b2fee70-a9d6-11ea-9970-ebbc5f219513", + "pb_id":"co-denver-4", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Denver SWAT shoot at woman trying to stop armored car", + "description":null, + "links":[ + "https:\/\/twitter.com\/DoughertyKMGH\/status\/1266560264918491138\/video\/1" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b300d50-a9d6-11ea-a504-5b9fdbad2ce5", + "pb_id":"co-denver-5", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police throw reporter into fire", + "description":null, + "links":[ + "https:\/\/twitter.com\/tessrmalle\/status\/1266945413258653696", + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gunfut\/denver_officer_pushed_a_photographer_into_a_fire\/", + "https:\/\/www.youtube.com\/watch?v=zhIWohJsRyM&feature=youtu.be&t=4225" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b3029e0-a9d6-11ea-a84c-d3cd9ca9be57", + "pb_id":"co-denver-6", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police tear gas and shoot protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/moneyroe99\/status\/1266956171409346566" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b306290-a9d6-11ea-808c-07edf723e1b6", + "pb_id":"co-denver-7", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Denver law enforcement shoot at reporter standing on the sidewalk", + "description":null, + "links":[ + "https:\/\/youtu.be\/xNLZ7exVxq4?t=110" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b308920-a9d6-11ea-ad8f-7bee4ab18aae", + "pb_id":"co-denver-8", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police fire pepper balls at car with pregnant woman", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gumff6\/denver_police_fire_pepper_balls_at_a_car_with_a\/" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b30a840-a9d6-11ea-9b66-3156de684de1", + "pb_id":"co-denver-9", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police officer fires at protestor while driving away", + "description":null, + "links":[ + "https:\/\/twitter.com\/heyydnae\/status\/1267139396278661121?s=21" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b30c660-a9d6-11ea-848d-3faedef95974", + "pb_id":"co-denver-10", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police pepper sprays peaceful protestor and fires tear gas on crowd", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gvhisl\/police_rip_sign_out_of_peaceful_protesters_hands\/", + "https:\/\/www.tiktok.com\/@yazzdazzz\/video\/6832896487207243014" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b30e370-a9d6-11ea-838e-1f544ee4bcb1", + "pb_id":"co-denver-11", + "state":"Colorado", + "city":"Denver", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police shoot protester from behind with tear gas canister", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Denver\/comments\/gvhqs2\/elisabeth_epps_use_of_force_committee_member_for\/" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b310f90-a9d6-11ea-89aa-99d6113758cd", + "pb_id":"co-denver-12", + "state":"Colorado", + "city":"Denver", + "date":"2020-06-04T00:00:00.000000Z", + "title":"Police tackle group of peaceful protesters", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Denver\/comments\/gwdg85\/denver_swat_unit_tackles_group_of_peaceful\/" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b3131e0-a9d6-11ea-add4-d750ab944679", + "pb_id":"co-denver-13", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police discharge tear gas into group of protesters", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Denver\/comments\/gslcxb\/the_moment_the_cops_tear_gassed_the_protesters_at\/" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"7b315130-a9d6-11ea-827d-499b58887079", + "pb_id":"va-manassas-1", + "state":"Virginia", + "city":"Manassas", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Officers pepper-spray Virginia state delegate peacefully protesting", + "description":null, + "links":[ + "https:\/\/twitter.com\/tristanshields\/status\/1266994214878932993" + ], + "data":null, + "geocoding":{ + "lat":"38.7509488", + "long":"-77.4752667" + } + }, + { + "id":"7b316f30-a9d6-11ea-bce4-a3562795f5e2", + "pb_id":"va-richmond-1", + "state":"Virginia", + "city":"Richmond", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Officer sprays a man watching from his balcony", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/rva\/comments\/gtwdzi\/someone_got_pepper_sprayed_from_his_second_floor\/", + "https:\/\/twitter.com\/ADeliciousBear\/status\/1268048506247405568", + "https:\/\/m.facebook.com\/story.php?story_fbid=1123349158037544&id=100010874104187" + ], + "data":null, + "geocoding":{ + "lat":"37.5407246", + "long":"-77.4360481" + } + }, + { + "id":"7b31aa50-a9d6-11ea-8bcc-11dc7920a63a", + "pb_id":"va-richmond-2", + "state":"Virginia", + "city":"Richmond", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Tear gas fired at peaceful protest", + "description":null, + "links":[ + "https:\/\/twitter.com\/i\/status\/1267650345947271176", + "https:\/\/twitter.com\/i\/status\/1267613150112858116", + "https:\/\/twitter.com\/i\/status\/1267601158534815745", + "https:\/\/twitter.com\/LVozzella\/status\/1267603037532704769", + "https:\/\/twitter.com\/myVPM\/status\/1267605983641075712", + "https:\/\/www.youtube.com\/watch?v=LG_HMghyQZc" + ], + "data":null, + "geocoding":{ + "lat":"37.5407246", + "long":"-77.4360481" + } + }, + { + "id":"7b320d20-a9d6-11ea-a164-6b59ad68defe", + "pb_id":"va-richmond-3", + "state":"Virginia", + "city":"Richmond", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Officer spits on detained protestor", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/guzgf9\/police_officer_in_richmond_va_spits_on_and_near_a\/" + ], + "data":null, + "geocoding":{ + "lat":"37.5407246", + "long":"-77.4360481" + } + }, + { + "id":"7b322ba0-a9d6-11ea-b325-8328f7cf19d2", + "pb_id":"va-richmond-4", + "state":"Virginia", + "city":"Richmond", + "date":"2020-06-04T00:00:00.000000Z", + "title":"Law enforcement officer fires tear gas at vehicle only to discover it's a police vehicle", + "description":null, + "links":[ + "https:\/\/twitter.com\/BeQueerDoCrime\/status\/1268648919623442432" + ], + "data":null, + "geocoding":{ + "lat":"37.5407246", + "long":"-77.4360481" + } + }, + { + "id":"7b324a20-a9d6-11ea-be32-bd813586e531", + "pb_id":"no-id-zCQAvQzK", + "state":"Virginia", + "city":"Fairfax", + "date":"2020-06-05T00:00:00.000000Z", + "title":"Officer repeatedly uses stun gun on suspect who said he couldn't breathe", + "description":null, + "links":[ + "https:\/\/ktla.com\/news\/nationworld\/a-virginia-police-officer-faces-charges-for-use-of-stun-gun-on-a-black-man\/", + "https:\/\/forthuntherald.com\/mount-vernon-police-officer-who-forcefully-apprehended-a-black-man-charged-with-assault-battery\/", + "https:\/\/www.youtube.com\/watch?v=MjFEDlTCKGE", + "https:\/\/www.washingtonpost.com\/local\/public-safety\/fairfax-county-police-officer-charged-after-using-stun-gun-on-black-man-without-provocation-police-say\/2020\/06\/07\/4e7b4a90-a858-11ea-b619-3f9133bbb482_story.html" + ], + "data":null, + "geocoding":{ + "lat":"38.8462236", + "long":"-77.3063733" + } + }, + { + "id":"7b329370-a9d6-11ea-b134-95e74708020d", + "pb_id":"la-neworleans-1", + "state":"Louisiana", + "city":"New Orleans", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police throw tear-gas at protestors on a bridge.", + "description":null, + "links":[ + "https:\/\/twitter.com\/misaacstein\/status\/1268381797081022464", + "https:\/\/twitter.com\/ckm_news\/status\/1268382403367763970", + "https:\/\/twitter.com\/brynstole\/status\/1268381340073971713", + "https:\/\/twitter.com\/xxnthe\/status\/1268427759870775298" + ], + "data":null, + "geocoding":{ + "lat":"29.9510658", + "long":"-90.0715323" + } + }, + { + "id":"b4128070-aa88-11ea-88d1-75d1628631ff", + "pb_id":"ar-littlerock-1", + "state":"Arkansas", + "city":"Little Rock", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Peaceful protestors kneeling are shot with an explosive projectile.", + "description":null, + "links":[ + "https:\/\/twitter.com\/KATVShelby\/status\/1267554421019475972?s=20", + "https:\/\/twitter.com\/KATVNews\/status\/1267509911954440194" + ], + "data":null, + "geocoding":{ + "lat":"34.7464809", + "long":"-92.2895948" + } + }, + { + "id":"b4150bf0-aa88-11ea-b89c-a5f1dc565ef4", + "pb_id":"ca-hollywood-1", + "state":"California", + "city":"Hollywood", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Law enforcement arrest people walking, you can hear on the radio \u201cYou should not be driving past anybody, stop and take somebody into custody\u201d.", + "description":null, + "links":[ + "https:\/\/twitter.com\/AdoreDelano\/status\/1267688320735166465" + ], + "data":null, + "geocoding":{ + "lat":"34.0928092", + "long":"-118.3286614" + } + }, + { + "id":"b4155a90-aa88-11ea-bcae-292a14154240", + "pb_id":"ca-lamesa-2", + "state":"California", + "city":"La Mesa", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Law enforcement shoot and throw tear gas at protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/mamitbh\/status\/1267030342243778561" + ], + "data":null, + "geocoding":{ + "lat":"32.7678287", + "long":"-117.0230839" + } + }, + { + "id":"b415a3a0-aa88-11ea-a168-31d31d9af2c4", + "pb_id":"ca-lamesa-1", + "state":"California", + "city":"La Mesa", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot woman in the face", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/100010947670361\/videos\/1115087385532840", + "https:\/\/mobile.twitter.com\/MarajYikes\/status\/1267030131563827200", + "https:\/\/mobile.twitter.com\/chadloder\/status\/1267290221562871809\/photo\/1" + ], + "data":null, + "geocoding":{ + "lat":"32.7678287", + "long":"-117.0230839" + } + }, + { + "id":"b41640e0-aa88-11ea-81b5-e97c3638bee2", + "pb_id":"ca-longbeach-1", + "state":"California", + "city":"Long Beach", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Reporter shot in neck by rubber bullet", + "description":null, + "links":[ + "https:\/\/laist.com\/2020\/05\/31\/reporters_injured_protests_police.php", + "https:\/\/twitter.com\/AGuzmanLopez\/status\/1267269781805137920" + ], + "data":null, + "geocoding":{ + "lat":"33.7700504", + "long":"-118.1937395" + } + }, + { + "id":"b416b5e0-aa88-11ea-bdb7-7365fa7c09f7", + "pb_id":"ca-losangeles-2", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-30T00:00:00.000000Z", + "title":"LAPD officer beats multiple protesters that are filming them during a protest in Beverley Hills", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gxjk67\/reposted_wo_officer_name_footage_of_lapd_at_last\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"b4170080-aa88-11ea-a1a7-a5bdf30b8959", + "pb_id":"ca-losangeles-3", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Los Angeles law enforcement beat protesters with batons", + "description":null, + "links":[ + "https:\/\/twitter.com\/larryprincxpark\/status\/1266883515431505920", + "https:\/\/twitter.com\/kendrick38\/status\/1266997131430133761", + "https:\/\/twitter.com\/ElieTWMayniac\/status\/1266914242885754880" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"b4176fb0-aa88-11ea-badc-d9efc85b4b61", + "pb_id":"ca-losangeles-4", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-30T00:00:00.000000Z", + "title":"ABC7 reporters are hit by tear gas", + "description":null, + "links":[ + "https:\/\/twitter.com\/GMA\/status\/1266934049098121216" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"b417c5c0-aa88-11ea-963d-89cc2198d18e", + "pb_id":"ca-losangeles-5", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police beat protesters with batons", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gxjk67\/reposted_wo_officer_name_footage_of_lapd_at_last\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"b4188a80-aa88-11ea-9d17-9dc84d013006", + "pb_id":"ca-losangeles-8", + "state":"California", + "city":"Los Angeles", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot rubber bullets at protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/SUNDAYLOVERBOY\/status\/1266890947888996352" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"b41bc510-aa88-11ea-8ded-01748815105e", + "pb_id":"ca-losangeles-1", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-02T00:00:00.000000Z", + "title":"LAPD drive by shootings at fleeing people announcing \"This is an illegal assembly\"", + "description":null, + "links":[ + "https:\/\/twitter.com\/balleralert\/status\/1268014113105555456", + "https:\/\/twitter.com\/theweirdingwayy\/status\/1268048483920928768", + "https:\/\/twitter.com\/EarvinD\/status\/1268087279458775040", + "https:\/\/abc7.com\/deputies-shoot-pepper-balls-at-skateboarders-in-hollywood---video\/6230652\/" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"b41e9b20-aa88-11ea-aa7e-071cef752ef7", + "pb_id":"ca-los-angeles-20", + "state":"California", + "city":"Los Angeles", + "date":"2020-06-05T00:00:00.000000Z", + "title":"Police fire projectiles at protesters and discharge teargas", + "description":null, + "links":[ + "https:\/\/abc7.com\/lakewood-protest-tear-gas-black-lives-matter-fired-during\/6235358\/", + "https:\/\/www.reddit.com\/r\/longbeach\/comments\/gyma59\/lakewoods_peaceful_protest_ends_in_cops_shooting\/ftb8mvt?utm_source=share&utm_medium=web2x", + "https:\/\/www.reddit.com\/r\/longbeach\/comments\/gyma59\/lakewoods_peaceful_protest_ends_in_cops_shooting\/?utm_source=share&utm_medium=web2x" + ], + "data":null, + "geocoding":{ + "lat":"34.0522342", + "long":"-118.2436849" + } + }, + { + "id":"b41f60b0-aa88-11ea-bfa7-519d5f22e4bc", + "pb_id":"ca-oakland-1", + "state":"California", + "city":"Oakland", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Officer runs down protesters with police cruiser", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gttdkj\/cop_driving_into_crowds_of_protestors\/" + ], + "data":null, + "geocoding":{ + "lat":"37.8043514", + "long":"-122.2711639" + } + }, + { + "id":"b41fbfd0-aa88-11ea-9288-074e66a72330", + "pb_id":"ca-oakland-2", + "state":"California", + "city":"Oakland", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Oakland law enforcement shoot a reporter", + "description":null, + "links":[ + "https:\/\/twitter.com\/SarahBelleLin\/status\/1266980899301683200" + ], + "data":null, + "geocoding":{ + "lat":"37.8043514", + "long":"-122.2711639" + } + }, + { + "id":"b42010f0-aa88-11ea-8879-ffb96c1f4cd4", + "pb_id":"ca-riverside-1", + "state":"California", + "city":"Riverside", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Law enforcement break a car window for no apparent reason", + "description":null, + "links":[ + "https:\/\/old.reddit.com\/r\/PublicFreakout\/comments\/gv2lku\/news_chopper_pans_out_as_riverside_county_sheriff\/" + ], + "data":null, + "geocoding":{ + "lat":"33.9806005", + "long":"-117.3754942" + } + }, + { + "id":"b42063c0-aa88-11ea-aeac-d19dc718a0c7", + "pb_id":"ca-sacramento-1", + "state":"California", + "city":"Sacramento", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot protester in the head", + "description":null, + "links":[ + "https:\/\/youtu.be\/pRmBO34aXME", + "https:\/\/twitter.com\/mynameschazz\/status\/1266978442722947072?s=21" + ], + "data":null, + "geocoding":{ + "lat":"38.5815719", + "long":"-121.4943996" + } + }, + { + "id":"b420dc30-aa88-11ea-9d64-05fc01a214c2", + "pb_id":"ca-sacramento-2", + "state":"California", + "city":"Sacramento", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Sacramento law enforcement shoot shoot protesters and then announce their assembly unlawful", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/danny.garza.167\/videos\/10222535335080905\/" + ], + "data":null, + "geocoding":{ + "lat":"38.5815719", + "long":"-121.4943996" + } + }, + { + "id":"b4212f00-aa88-11ea-8068-650dff760660", + "pb_id":"ca-sacramento-3", + "state":"California", + "city":"Sacramento", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police choke man and push woman filming event to the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1268334584443342850", + "https:\/\/twitter.com\/reereeisme65\/status\/1267378345894789125" + ], + "data":null, + "geocoding":{ + "lat":"38.5815719", + "long":"-121.4943996" + } + }, + { + "id":"b421b100-aa88-11ea-ba16-1fe40a113456", + "pb_id":"ca-sandiego-2", + "state":"California", + "city":"San Diego", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police kettle and fire on fleeing protestors", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=6uNySPSwhAI&feature=youtu.be", + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gynpd8\/police_block_off_sidewalks_and_start_shooting_at\/" + ], + "data":null, + "geocoding":{ + "lat":"32.7157380", + "long":"-117.1610838" + } + }, + { + "id":"b4222ad0-aa88-11ea-80df-8f7bd640fa0d", + "pb_id":"ca-sandiego-1", + "state":"California", + "city":"San Diego", + "date":"2020-06-04T00:00:00.000000Z", + "title":"Police abduct woman in unmarked van", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1269009907367493634" + ], + "data":null, + "geocoding":{ + "lat":"32.7157380", + "long":"-117.1610838" + } + }, + { + "id":"b4227e00-aa88-11ea-a20d-7d8727b98262", + "pb_id":"ca-sanfrancisco-1", + "state":"California", + "city":"San Francisco", + "date":"2020-05-31T00:00:00.000000Z", + "title":"San Francisco law enforcement shove man off the sidewalk onto the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/caseylc9\/status\/1267285516262596608" + ], + "data":null, + "geocoding":{ + "lat":"37.7749295", + "long":"-122.4194155" + } + }, + { + "id":"b422cbb0-aa88-11ea-b0b8-731b99ab8879", + "pb_id":"ca-sanjose-1", + "state":"California", + "city":"San Jose", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police shoot a projectile at a protestor", + "description":null, + "links":[ + "https:\/\/twitter.com\/junkieanteater\/status\/1266603252839141377", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gtksgq\/cop_decides_to_shoot_at_protestor_who_hurt_his\/", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gtg2cb\/cop_waits_in_excitement_like_its_a_game\/", + "https:\/\/twitter.com\/bowiezamudio\/status\/1266598285206106113", + "https:\/\/twitter.com\/kakimeows\/status\/1266982771005616128" + ], + "data":null, + "geocoding":{ + "lat":"37.3382082", + "long":"-121.8863286" + } + }, + { + "id":"b423b7f0-aa88-11ea-bbab-67591882ef15", + "pb_id":"ca-sanjose-3", + "state":"California", + "city":"San Jose", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Officer puts knee on neck of protester", + "description":null, + "links":[ + "https:\/\/twitter.com\/DeadByDawn101\/status\/1268825100385521665" + ], + "data":null, + "geocoding":{ + "lat":"37.3382082", + "long":"-121.8863286" + } + }, + { + "id":"b4240650-aa88-11ea-81b4-d934cf41efc8", + "pb_id":"ca-sanjose-2", + "state":"California", + "city":"San Jose", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police fire on community activist", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1269267786792144898", + "https:\/\/abc7news.com\/man-who-trains-san-jose-police-about-bias-severely-injured-by-riot-gun-during-protest\/6234212\/", + "https:\/\/www.latimes.com\/california\/story\/2020-06-06\/community-organizer-shot-by-rubber-bullet-during-protest" + ], + "data":null, + "geocoding":{ + "lat":"37.3382082", + "long":"-121.8863286" + } + }, + { + "id":"b424a960-aa88-11ea-9deb-5b60d3fbb2e6", + "pb_id":"ca-sanluisobispo-1", + "state":"California", + "city":"San Luis Obispo", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Law enforcement fire on crowd with their arms up chanting", + "description":null, + "links":[ + "https:\/\/twitter.com\/ma7dz\/status\/1267697838244298752" + ], + "data":null, + "geocoding":{ + "lat":"35.2827524", + "long":"-120.6596156" + } + }, + { + "id":"b424f7e0-aa88-11ea-bafe-09183165a357", + "pb_id":"ca-santaana-1", + "state":"California", + "city":"Santa Ana", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police open fire on protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/YourAnonCentral\/status\/1266991237355069442" + ], + "data":null, + "geocoding":{ + "lat":"33.7454725", + "long":"-117.8676530" + } + }, + { + "id":"b42549c0-aa88-11ea-a9ae-bb20e8175489", + "pb_id":"ca-santamonica-1", + "state":"California", + "city":"Santa Monica", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police fire pepper bullets into apartment", + "description":null, + "links":[ + "https:\/\/twitter.com\/GIFsZP\/status\/1267241803750813703" + ], + "data":null, + "geocoding":{ + "lat":"34.0194543", + "long":"-118.4911912" + } + }, + { + "id":"b425a160-aa88-11ea-8d56-09da572efc7d", + "pb_id":"ca-vallejo-1", + "state":"California", + "city":"Vallejo", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police fatally shoot unarmed 22 year old", + "description":null, + "links":[ + "https:\/\/www.theguardian.com\/us-news\/2020\/jun\/04\/vallejo-police-kill-unarmed-man-california" + ], + "data":null, + "geocoding":{ + "lat":"38.1040864", + "long":"-122.2566367" + } + }, + { + "id":"b425ee60-aa88-11ea-80ac-81c133c5ea54", + "pb_id":"ca-walnutcreek-1", + "state":"California", + "city":"Walnut Creek", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Armored law enforcement vehicle threatens protestors", + "description":null, + "links":[ + "https:\/\/www.instagram.com\/p\/CA7KMc9pX5S\/" + ], + "data":null, + "geocoding":{ + "lat":"37.9100783", + "long":"-122.0651819" + } + }, + { + "id":"b428bfc0-aa88-11ea-88b3-2b02d3ea5f0f", + "pb_id":"ia-desmoines-2", + "state":"Iowa", + "city":"Des Moines", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police repeatedly shoot tear gas into crowd, even after crowd has dispersed", + "description":null, + "links":[ + "https:\/\/www.kcci.com\/article\/developing-protesters-face-off-with-police-in-downtown-des-moines\/32717301" + ], + "data":null, + "geocoding":{ + "lat":"41.5868353", + "long":"-93.6249593" + } + }, + { + "id":"b42909d0-aa88-11ea-9976-7900fa2f312e", + "pb_id":"ia-desmoines-3", + "state":"Iowa", + "city":"Des Moines", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police truck shoots at cars, hitting mother and breaking her finger", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gxlfdo\/police_truck_shoots_at_cars_hitting_mother_and\/?utm_source=share&utm_medium=web2x", + "https:\/\/www.tiktok.com\/@jakegracey\/video\/6834936818799004934?source=h5_m", + "https:\/\/www.google.ca\/maps\/@41.6293563,-93.6988361,3a,75y,358.27h,68.85t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"41.5868353", + "long":"-93.6249593" + } + }, + { + "id":"b4299cd0-aa88-11ea-9153-99a0d5c1234a", + "pb_id":"ia-desmoines-7", + "state":"Iowa", + "city":"Des Moines", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police detail Des Moines Register reporter while covering event", + "description":null, + "links":[ + "https:\/\/twitter.com\/RachelSB\/status\/1267260438900867074", + "https:\/\/www.desmoinesregister.com\/story\/news\/2020\/05\/31\/register-reporter-arrested-while-covering-protest\/5304560002\/" + ], + "data":null, + "geocoding":{ + "lat":"41.5868353", + "long":"-93.6249593" + } + }, + { + "id":"b42a08c0-aa88-11ea-a404-7b9a588307bf", + "pb_id":"ia-desmoines-4", + "state":"Iowa", + "city":"Des Moines", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police pepper spray Des Moines Register reporter even as she repeatedly announced herself as press", + "description":null, + "links":[ + "https:\/\/twitter.com\/katie_akin\/status\/1267694434847731713", + "https:\/\/www.desmoinesregister.com\/story\/news\/2020\/06\/02\/des-moines-police-pepper-spray-journalist-iowa-george-floyd-protest-des-moines-register-reporter\/3126478001\/" + ], + "data":null, + "geocoding":{ + "lat":"41.5868353", + "long":"-93.6249593" + } + }, + { + "id":"b42a7bd0-aa88-11ea-bad7-95e6cf944b29", + "pb_id":"ia-desmoines-5", + "state":"Iowa", + "city":"Des Moines", + "date":"2020-06-05T00:00:00.000000Z", + "title":"Armed police raid gay bar helping wounded Black Lives Matter protesters on the first day of Pride Month", + "description":null, + "links":[ + "https:\/\/www.pinknews.co.uk\/2020\/06\/05\/police-raid-blazing-saddle-des-moines-iowa-black-lives-matter-stonewall\/?fbclid=IwAR20SUPSke3O_U2jqXaicl3dOcKwKPYlG5eOc131oao76Z2rEXXz0-ASORQ", + "http:\/\/iowainformer.com\/politics\/2020\/06\/des-moines-gay-bar-raided-amid-black-lives-matter-protests-as-pride-month-begins\/", + "https:\/\/twitter.com\/aaronpcalvin\/status\/1268708285517004801", + "https:\/\/www.google.ca\/maps\/place\/The+Blazing+Saddle\/@41.590306,-93.6114412,3a,75y,275.31h,90t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"41.8780025", + "long":"-93.0977020" + } + }, + { + "id":"b42b3730-aa88-11ea-96f2-fb98a470a184", + "pb_id":"ia-iowacity-1", + "state":"Iowa", + "city":"Iowa City", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police shoot tear gas at peaceful protestors who have their hands up", + "description":null, + "links":[ + "https:\/\/twitter.com\/DJPAIMON\/status\/1268399580753858561" + ], + "data":null, + "geocoding":{ + "lat":"41.6611277", + "long":"-91.5301683" + } + }, + { + "id":"b42c86f0-aa88-11ea-b686-c13d34a059fb", + "pb_id":"ct-waterbury-2", + "state":"Connecticut", + "city":"Waterbury", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police tackle and detain 6 protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/mattaustinTV\/status\/1267189278691528706", + "https:\/\/twitter.com\/RACCEWtby\/status\/1268173057375514624", + "https:\/\/twitter.com\/Calibud_Art\/status\/1268274760250777600" + ], + "data":null, + "geocoding":{ + "lat":"41.5581525", + "long":"-73.0514965" + } + }, + { + "id":"b42d3a80-aa88-11ea-a4e8-41956b1e510d", + "pb_id":"ct-waterbury-1", + "state":"Connecticut", + "city":"Waterbury", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Officer forces women into car and wrestles with another", + "description":null, + "links":[ + "https:\/\/twitter.com\/Youbeenafannn\/status\/1268253924471037959" + ], + "data":null, + "geocoding":{ + "lat":"41.5581525", + "long":"-73.0514965" + } + }, + { + "id":"b42df000-aa88-11ea-93f1-df85cdd7e752", + "pb_id":"pa-harrisburg-1", + "state":"Pennsylvania", + "city":"Harrisburg", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police pepperspray protesters helping someone stand up", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1266862623041167362" + ], + "data":null, + "geocoding":{ + "lat":"40.2731911", + "long":"-76.8867008" + } + }, + { + "id":"b42e3f90-aa88-11ea-bed2-7f99101c1239", + "pb_id":"pa-philadelphia-1", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police beat down man", + "description":null, + "links":[ + "https:\/\/twitter.com\/UR_Ninja\/status\/1266913490301792257" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"b42e8fd0-aa88-11ea-af3a-d111cc32ec90", + "pb_id":"pa-philadelphia-2", + "state":"Pennsylvania", + "city":"Philadelphia", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Police drag cooperating man from car and punch him in the face", + "description":null, + "links":[ + "https:\/\/youtu.be\/QDcCFN_LQPA" + ], + "data":null, + "geocoding":{ + "lat":"39.9525839", + "long":"-75.1652215" + } + }, + { + "id":"b43129c0-aa88-11ea-a89c-8fe61d7181d0", + "pb_id":"pa-pittsburgh-1", + "state":"Pennsylvania", + "city":"Pittsburgh", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Officer pepper-sprays a woman who is on her knees with her hands up", + "description":null, + "links":[ + "https:\/\/www.youtube.com\/watch?v=TxHxU6nhzzQ", + "https:\/\/twitter.com\/PaulaReedWard\/status\/1268547369618026503", + "https:\/\/www.post-gazette.com\/news\/crime-courts\/2020\/06\/03\/East-Liberty-protest-Abigail-Rubio-says-Pittsburgh-police-intimidated-video\/stories\/202006030158" + ], + "data":null, + "geocoding":{ + "lat":"40.4406248", + "long":"-79.9958864" + } + }, + { + "id":"b431c8e0-aa88-11ea-9b46-6bdd001313cb", + "pb_id":"pa-pittsburgh-2", + "state":"Pennsylvania", + "city":"Pittsburgh", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police fire tear gas and rubber bullets on peaceful assembly", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/pittsburgh\/comments\/guzshz\/police_declaring_an_unlawful_assembly_against_a\/", + "https:\/\/www.facebook.com\/BenjaminKFerris\/posts\/3091613010894973", + "https:\/\/twitter.com\/gautamyadav818\/status\/1267606317893550080" + ], + "data":null, + "geocoding":{ + "lat":"40.4406248", + "long":"-79.9958864" + } + }, + { + "id":"b4333a40-aa88-11ea-82d5-55f5c032d999", + "pb_id":"ny-buffalo-3", + "state":"New York", + "city":"Buffalo", + "date":"2020-06-05T00:00:00.000000Z", + "title":"Reporter shot at after identifying himself", + "description":null, + "links":[ + "https:\/\/twitter.com\/PhotoJazzy\/status\/1269056626843099137" + ], + "data":null, + "geocoding":{ + "lat":"42.8864468", + "long":"-78.8783689" + } + }, + { + "id":"b4339140-aa88-11ea-8c6e-a10b79f0c5e8", + "pb_id":"ny-newyorkcity-1", + "state":"New York", + "city":"New York City", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police shove woman to the ground, inducing a seizure", + "description":null, + "links":[ + "https:\/\/twitter.com\/whitney_hu\/status\/1266540710188195843", + "https:\/\/twitter.com\/JasonLemon\/status\/1266529475757510656", + "https:\/\/twitter.com\/zayer_dounya\/status\/1266581597760831489" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"b4343cc0-aa88-11ea-a4f3-f7fcb90a543f", + "pb_id":"ny-newyorkcity-2", + "state":"New York", + "city":"New York City", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police drive by man and hit him with car door", + "description":null, + "links":[ + "https:\/\/twitter.com\/DriveWendys\/status\/1266555286678048770" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"b4348f00-aa88-11ea-9612-2342cd30be13", + "pb_id":"ny-newyorkcity-3", + "state":"New York", + "city":"New York City", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Member of the New York State Assembly pepper-sprayed", + "description":null, + "links":[ + "https:\/\/www.cityandstateny.com\/articles\/politics\/news-politics\/even-black-lawmakers-get-pepper-sprayed.html", + "https:\/\/twitter.com\/GwynneFitz\/status\/1266522692326428672" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"b43b1c40-aa88-11ea-981f-7b0f876530b8", + "pb_id":"ny-newyorkcity-26", + "state":"New York", + "city":"New York City", + "date":"2020-06-06T00:00:00.000000Z", + "title":"Multiple police officers tackle cyclist protester one officer punches head of protester", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/Brooklyn\/comments\/gy40fz\/nypd_aggressively_arrest_cyclist_on_blm_group_ride\/?utm_source=share&utm_medium=web2x" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"b43b67e0-aa88-11ea-969a-1722c3fe890f", + "pb_id":"ny-rochester-1", + "state":"New York", + "city":"Rochester", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot at people filming", + "description":null, + "links":[ + "https:\/\/twitter.com\/bleeezyy_\/status\/1266894195865931778" + ], + "data":null, + "geocoding":{ + "lat":"43.1565779", + "long":"-77.6088465" + } + }, + { + "id":"b43bfd90-aa88-11ea-8820-871cc6fccab8", + "pb_id":"mi-detroit-5", + "state":"Michigan", + "city":"Detroit", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Riot police charge peaceful protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/julietmariaa\/status\/1266568356976635904" + ], + "data":null, + "geocoding":{ + "lat":"42.3314270", + "long":"-83.0457538" + } + }, + { + "id":"b43d3690-aa88-11ea-8754-1da8433c0d15", + "pb_id":"mi-detroit-6", + "state":"Michigan", + "city":"Detroit", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Woman is charged by police and thrown to the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/TheModLibrarian\/status\/1266587927783620613" + ], + "data":null, + "geocoding":{ + "lat":"42.3314270", + "long":"-83.0457538" + } + }, + { + "id":"b43d80e0-aa88-11ea-afa5-ebb9f4d55a12", + "pb_id":"mi-grandrapids-1", + "state":"Michigan", + "city":"Grand Rapids", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police spray unarmed man with pepperspray and shoot him in the face with a teargas canister", + "description":null, + "links":[ + "https:\/\/old.reddit.com\/r\/Bad_Cop_No_Donut\/comments\/gub8fx\/police_shoot_protestor_point_blank_in_the_face\/", + "https:\/\/www.fox17online.com\/news\/local-news\/grand-rapids\/grpd-conducting-internal-investigation-after-viral-video-of-man-being-pepper-sprayed", + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gv3xuu\/police_in_grand_rapids_michigan_spray_a_man\/" + ], + "data":null, + "geocoding":{ + "lat":"42.9633599", + "long":"-85.6680863" + } + }, + { + "id":"b43e2740-aa88-11ea-b1a4-51a06b2ae268", + "pb_id":"mi-kalamazoo-1", + "state":"Michigan", + "city":"Kalamazoo", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police fire tear gas at prone protesters", + "description":null, + "links":[ + "https:\/\/twitter.com\/i\/status\/1267677463850745858", + "https:\/\/www.facebook.com\/BlaineBurnett11\/videos\/963503949886\/" + ], + "data":null, + "geocoding":{ + "lat":"42.2917069", + "long":"-85.5872286" + } + }, + { + "id":"b43e9de0-aa88-11ea-9d07-3936674e0d81", + "pb_id":"mi-kalamazoo-2", + "state":"Michigan", + "city":"Kalamazoo", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police fire tear gas at peaceful protesters", + "description":null, + "links":[ + "https:\/\/streamable.com\/xvlky1", + "https:\/\/streamable.com\/0wfiu3", + "https:\/\/www.mlive.com\/news\/kalamazoo\/2020\/06\/my-heart-was-wrenched-with-pain-assistant-chief-says-of-ordering-tear-gas-on-protesters.html", + "https:\/\/ibb.co\/Fgrwqkj" + ], + "data":null, + "geocoding":{ + "lat":"42.2917069", + "long":"-85.5872286" + } + }, + { + "id":"b444db40-aa88-11ea-a9a0-3b3181553669", + "pb_id":"wa-seattle-15", + "state":"Washington", + "city":"Seattle", + "date":"2020-06-07T00:00:00.000000Z", + "title":"Police use tear gas on protestors", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/comments\/gycscp\/cant_go_1_day_without_teargaslighting_us\/?utm_source=share&utm_medium=web2x", + "https:\/\/www.forbes.com\/sites\/jemimamcevoy\/2020\/06\/08\/seattle-police-use-tear-gas-against-protestors-despite-city-ban\/#7e98a1d5b4bc" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"b4455a20-aa88-11ea-805e-19922c25bdeb", + "pb_id":"wa-seattle-14", + "state":"Washington", + "city":"Seattle", + "date":"2020-06-07T00:00:00.000000Z", + "title":"Woman hit with police projectile resumes breathing after CPR, delivered to hospital", + "description":null, + "links":[ + "https:\/\/twitter.com\/chaseburnsy\/status\/1269890344331571201", + "https:\/\/www.reddit.com\/r\/Seattle\/comments\/gywxhz\/folks_i_need_your_help\/", + "https:\/\/imgur.com\/a\/fWkU0SA" + ], + "data":null, + "geocoding":{ + "lat":"47.6062095", + "long":"-122.3320708" + } + }, + { + "id":"b448f3e0-aa88-11ea-b8dd-1f9d2686e7a1", + "pb_id":"sc-unknown-1", + "state":"South Carolina", + "city":"Location Unknown", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police Assault Suspect on Ground During Arrest", + "description":null, + "links":[ + "https:\/\/twitter.com\/track4life_bry\/status\/1268313958479532034" + ], + "data":null, + "geocoding":{ + "lat":"33.8360810", + "long":"-81.1637245" + } + }, + { + "id":"b44aabf0-aa88-11ea-8d3f-4bae2fc0b9f6", + "pb_id":"ga-atlanta-4", + "state":"Georgia", + "city":"Atlanta", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police punch man on the ground, then tackle woman to ground who objects", + "description":null, + "links":[ + "https:\/\/twitter.com\/ANGELCUCCl\/status\/1266939757252280321" + ], + "data":null, + "geocoding":{ + "lat":"33.7489954", + "long":"-84.3879824" + } + }, + { + "id":"b44b4ef0-aa88-11ea-9641-a5b9da62cce3", + "pb_id":"ga-atlanta-6", + "state":"Georgia", + "city":"Atlanta", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shove and shoot protesters", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/onlettingo\/videos\/10157072617626056", + "https:\/\/www.facebook.com\/kristajeannettewilliamson\/posts\/3334778089868526" + ], + "data":null, + "geocoding":{ + "lat":"33.7489954", + "long":"-84.3879824" + } + }, + { + "id":"b44bcf80-aa88-11ea-8104-07e1591afcc1", + "pb_id":"ga-lawrenceville-1", + "state":"Georgia", + "city":"Lawrenceville", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Man tased in back for speaking up after man on ground is punched in face by cop", + "description":null, + "links":[ + "https:\/\/twitter.com\/ftn_shark\/status\/1266854056506667009?s=19", + "https:\/\/twitter.com\/throneofmorac\/status\/1266870493858185217?s=09" + ], + "data":null, + "geocoding":{ + "lat":"33.9562149", + "long":"-83.9879625" + } + }, + { + "id":"b44cfdb0-aa88-11ea-8079-1b09a5a2ec0a", + "pb_id":"fl-miami-1", + "state":"Florida", + "city":"Miami", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Man tackled to ground after speaking to police", + "description":null, + "links":[ + "https:\/\/twitter.com\/BillyCorben\/status\/1267644127178563588" + ], + "data":null, + "geocoding":{ + "lat":"25.7616798", + "long":"-80.1917902" + } + }, + { + "id":"b44d54a0-aa88-11ea-aab3-5f94b75b2577", + "pb_id":"fl-orlando-1", + "state":"Florida", + "city":"Orlando", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police use excessive force during an arrest", + "description":null, + "links":[ + "https:\/\/twitter.com\/ewcfilms\/status\/1268003421786906627" + ], + "data":null, + "geocoding":{ + "lat":"28.5383355", + "long":"-81.3792365" + } + }, + { + "id":"b44da7f0-aa88-11ea-a0c0-8bbf25cd637c", + "pb_id":"fl-orlando-2", + "state":"Florida", + "city":"Orlando", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Police fire on protesters outside city hall", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1269017349727928320", + "https:\/\/www.google.com\/maps\/place\/29+W+South+St,+Orlando,+FL+32801,+USA\/@28.5384293,-81.3797504,20z\/data=" + ], + "data":null, + "geocoding":{ + "lat":"28.5383355", + "long":"-81.3792365" + } + }, + { + "id":"b44e2a60-aa88-11ea-99e2-f3b45572b029", + "pb_id":"fl-tampa-1", + "state":"Florida", + "city":"Tampa", + "date":"2020-06-04T00:00:00.000000Z", + "title":"One woman is pinned to the ground and another is pepper-sprayed", + "description":null, + "links":[ + "https:\/\/twitter.com\/walkin_da_talk\/status\/1268718193679499266", + "https:\/\/twitter.com\/jamiebullockk\/status\/1268658254806163460", + "https:\/\/twitter.com\/InesseC\/status\/1268912900565094401", + "https:\/\/www.google.com\/maps\/@27.9563654,-82.4569108,3a,75y,255.48h,92.17t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"27.9505750", + "long":"-82.4571776" + } + }, + { + "id":"b44fc320-aa88-11ea-a406-2bf8365d2d47", + "pb_id":"wi-milwaukee-1", + "state":"Wisconsin", + "city":"Milwaukee", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police restrain man using knee on neck", + "description":null, + "links":[ + "http:\/\/www.milwaukeeindependent.com\/articles\/milwaukee-common-council-calls-investigation-use-knee-police-restrain-protestor\/", + "https:\/\/old.reddit.com\/r\/gifs\/comments\/gxptyo\/june_2_2020_milwaukee_police_punch_and_knee\/", + "https:\/\/giphy.com\/gifs\/protest-milwaukee-blm-IzjGA5w04kTJTeP7Dz\/fullscreen", + "https:\/\/www.google.ca\/maps\/place\/N+6th+St+%26+W+Vliet+St,+Milwaukee,+WI+53205,+USA\/@43.0483922,-87.9188126,3a,75y,1.17h,90t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"43.0389025", + "long":"-87.9064736" + } + }, + { + "id":"b4509e20-aa88-11ea-9e09-4d59cc8d693c", + "pb_id":"mn-minneapolis-22", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-26T00:00:00.000000Z", + "title":"Police hit press in neck and head with wooden baton", + "description":null, + "links":[ + "https:\/\/youtu.be\/XAa5xb6JitI?t=5982", + "https:\/\/gfycat.com\/distinctsecretgrasshopper-minneapolis-protest-police-acab" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"b451eaf0-aa88-11ea-8505-8372e62cea35", + "pb_id":"mn-minneapolis-21", + "state":"Minnesota", + "city":"Minneapolis", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Continuation of gas station event; Awaijane family told to go inside gas station, they comply and seek shelter inside, police then shoot rubber bullets and tear gas inside the building", + "description":null, + "links":[ + "https:\/\/youtu.be\/46qWpv-yFE8?t=268" + ], + "data":null, + "geocoding":{ + "lat":"44.9777530", + "long":"-93.2650108" + } + }, + { + "id":"b4586fc0-aa88-11ea-a3e1-87acad71511e", + "pb_id":"nc-asheville-1", + "state":"North Carolina", + "city":"Asheville", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police surround approved medical station and destroy supplies", + "description":null, + "links":[ + "https:\/\/twitter.com\/AngelaMWilhelm\/status\/1268056986102444033", + "https:\/\/twitter.com\/AngelaMWilhelm\/status\/1267974081577717762", + "https:\/\/twitter.com\/daveth89\/status\/1267974555332685824", + "https:\/\/i.redd.it\/wofh339sqr251.png" + ], + "data":null, + "geocoding":{ + "lat":"35.5950581", + "long":"-82.5514869" + } + }, + { + "id":"b459a2a0-aa88-11ea-a28c-0d6332d083a4", + "pb_id":"nc-raleigh-1", + "state":"North Carolina", + "city":"Raleigh", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police shoot to intimidate owner of LGBTQ bar", + "description":null, + "links":[ + "https:\/\/www.instagram.com\/p\/CA51AJxH7S9", + "https:\/\/www.newsobserver.com\/news\/local\/article243202416.html", + "https:\/\/www.google.ca\/maps\/place\/Ruby+Deluxe\/@35.7751916,-78.6399548,3a,75y,200h,110t\/data=" + ], + "data":null, + "geocoding":{ + "lat":"35.7795897", + "long":"-78.6381787" + } + }, + { + "id":"b45bc850-aa88-11ea-92a7-630ca79f1f04", + "pb_id":"in-indianapolis-1", + "state":"Indiana", + "city":"Indianapolis", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police confiscate medical supplies from medical station", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/AlexandraIndy\/videos\/10219444419838711" + ], + "data":null, + "geocoding":{ + "lat":"39.7684030", + "long":"-86.1580680" + } + }, + { + "id":"b45c1e00-aa88-11ea-88de-f5ff477a81bc", + "pb_id":"in-indianapolis-2", + "state":"Indiana", + "city":"Indianapolis", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police beat woman with batons and shoot pepper balls, shove another to the ground", + "description":null, + "links":[ + "https:\/\/www.washingtonpost.com\/national\/protests-police-brutality-video\/2020\/06\/05\/a9e66568-a768-11ea-b473-04905b1af82b_story.html", + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/guffju\/indianapolis_police_on_women_rights\/", + "https:\/\/twitter.com\/greg_doucette\/status\/1268391718086422528" + ], + "data":null, + "geocoding":{ + "lat":"39.7684030", + "long":"-86.1580680" + } + }, + { + "id":"b45cc8c0-aa88-11ea-943d-c38fcdcb4e0e", + "pb_id":"in-lafayette-1", + "state":"Indiana", + "city":"Lafayette", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Officer drops tear gas into peaceful protest without warning", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/ctchoula\/videos\/10163707272210302\/", + "https:\/\/scontent-ort2-2.xx.fbcdn.net\/v\/t1.0-9\/101254362_755196441884833_7192544661301362688_n.jpg?_nc_cat=103&_nc_sid=110474&_nc_ohc=wjDZM1x0RLYAX9sKPft&_nc_ht=scontent-ort2-2.xx&oh=606a9dbf10d30a680c5dcb2c8ae8d7ce&oe=5EFD314B" + ], + "data":null, + "geocoding":{ + "lat":"40.4167022", + "long":"-86.8752869" + } + }, + { + "id":"b45db770-aa88-11ea-9f83-752d4867711c", + "pb_id":"or-portland-1", + "state":"Oregon", + "city":"Portland", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police violently break up peaceful protest", + "description":null, + "links":[ + "https:\/\/twitter.com\/IwriteOK\/status\/1266907719635632129", + "https:\/\/twitter.com\/MrOlmos\/status\/1266916861267996673" + ], + "data":null, + "geocoding":{ + "lat":"45.5051064", + "long":"-122.6750261" + } + }, + { + "id":"b4608030-aa88-11ea-8622-bfcbbc88142e", + "pb_id":"ma-worcester-1", + "state":"Massachusetts", + "city":"Worcester", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Worcester police officers cover badge numbers during protest", + "description":null, + "links":[ + "https:\/\/twitter.com\/sebishop99\/status\/1267877928391659521\/photo\/1" + ], + "data":null, + "geocoding":{ + "lat":"42.2625932", + "long":"-71.8022934" + } + }, + { + "id":"b460e030-aa88-11ea-8976-85e8e1525427", + "pb_id":"ma-worcester-2", + "state":"Massachusetts", + "city":"Worcester", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Riot police throw protestor to the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/sebishop99\/status\/1267890659484143616", + "https:\/\/twitter.com\/sebishop99\/status\/1267905527390113798", + "https:\/\/streamable.com\/lqxq76", + "https:\/\/twitter.com\/sebishop99\/status\/1267911837808496646" + ], + "data":null, + "geocoding":{ + "lat":"42.2625932", + "long":"-71.8022934" + } + }, + { + "id":"b46333d0-aa88-11ea-85ab-3da4da4c6637", + "pb_id":"oh-cincinnati-3", + "state":"Ohio", + "city":"Cincinnati", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police arrest reporter and force him to ground, grab another reporter", + "description":null, + "links":[ + "https:\/\/twitter.com\/nswartsell\/status\/1267612155840528385" + ], + "data":null, + "geocoding":{ + "lat":"39.1031182", + "long":"-84.5120196" + } + }, + { + "id":"b463cf70-aa88-11ea-8f98-cdf5a0bf0aa7", + "pb_id":"oh-cleveland-2", + "state":"Ohio", + "city":"Cleveland", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police fire tear gas at peaceful protest", + "description":null, + "links":[ + "https:\/\/twitter.com\/rachelscotton\/status\/1266840734906318848" + ], + "data":null, + "geocoding":{ + "lat":"41.4993200", + "long":"-81.6943605" + } + }, + { + "id":"b4641b50-aa88-11ea-be71-45cf6a97dc56", + "pb_id":"oh-columbus-1", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Cop hits a protestor in the face, escalates to whole crowd being pepper sprayed", + "description":null, + "links":[ + "https:\/\/www.facebook.com\/story.php?story_fbid=1137997739900780&id=100010716946743" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"b4647bb0-aa88-11ea-8b36-9b79c5a6c978", + "pb_id":"oh-columbus-2", + "state":"Ohio", + "city":"Columbus", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Congresswoman Joyce Beatty reportedly sprayed with \"mace or pepper spray\"", + "description":null, + "links":[ + "https:\/\/www.cnn.com\/2020\/05\/30\/politics\/joyce-beatty-ohio-pepper-sprayed-columbus-protest\/index.html", + "https:\/\/twitter.com\/politico\/status\/1266866982919516160", + "https:\/\/twitter.com\/TimWCBD\/status\/1266787064735043591", + "https:\/\/twitter.com\/KRobPhoto\/status\/1266796191469252610" + ], + "data":null, + "geocoding":{ + "lat":"39.9611755", + "long":"-82.9987942" + } + }, + { + "id":"b46df590-aa88-11ea-87c8-2df84ff5b620", + "pb_id":"tx-baytown-1", + "state":"Texas", + "city":"Baytown", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police officer tackles and knees man on the ground", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gw2dpw\/cop_in_baytown_tx_pulls_over_black_man_white_man\/", + "https:\/\/www.facebook.com\/isaiah.benavides.94\/videos\/2811815772219886\/" + ], + "data":null, + "geocoding":{ + "lat":"29.7355047", + "long":"-94.9774274" + } + }, + { + "id":"b46e7f90-aa88-11ea-9457-45a6538cb88e", + "pb_id":"tx-dallas-1", + "state":"Texas", + "city":"Dallas", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police shoot unarmed woman in the face with a rubber bullet", + "description":null, + "links":[ + "https:\/\/twitter.com\/KevinRKrause\/status\/1266898396339675137", + "https:\/\/i.redd.it\/ns0uj557x0251.jpg", + "https:\/\/twitter.com\/greg_doucette\/status\/1267109272342736896" + ], + "data":null, + "geocoding":{ + "lat":"32.7766642", + "long":"-96.7969879" + } + }, + { + "id":"b46f3e60-aa88-11ea-8c71-11e7d66d6b6f", + "pb_id":"tx-dallas-4", + "state":"Texas", + "city":"Dallas", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Man shot in the eye", + "description":null, + "links":[ + "https:\/\/twitter.com\/HERCGTH\/status\/1266870616570900480", + "https:\/\/www.wfaa.com\/article\/news\/local\/dallas-county\/dallas-police-investigating-possible-use-of-force-incidents-saturday\/287-1d3851d2-656c-4d40-8eac-7deac44ddf2d", + "https:\/\/twitter.com\/chadloder\/status\/1267261398481920000" + ], + "data":null, + "geocoding":{ + "lat":"32.7766642", + "long":"-96.7969879" + } + }, + { + "id":"b46fc980-aa88-11ea-9f48-4fd2d2180743", + "pb_id":"tx-dallas-2", + "state":"Texas", + "city":"Dallas", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police use flashbangs and tear gas on protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/xtranai\/status\/1266898175568338945" + ], + "data":null, + "geocoding":{ + "lat":"32.7766642", + "long":"-96.7969879" + } + }, + { + "id":"b4701e40-aa88-11ea-8b1c-1fa142275dcb", + "pb_id":"tx-dallas-3", + "state":"Texas", + "city":"Dallas", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police maneuver protestors onto bridge and fire tear gas and rubber bullets", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gx9a5n\/these_protests_took_place_on_june_2nd_in_dallas\/", + "https:\/\/www.google.com\/maps\/place\/Margaret+Hunt+Hill+Bridge,+Dallas,+TX,+USA\/@32.781075,-96.8186896,15z\/data=" + ], + "data":null, + "geocoding":{ + "lat":"32.7766642", + "long":"-96.7969879" + } + }, + { + "id":"b470b600-aa88-11ea-95a6-5f8931199cf0", + "pb_id":"tx-houston-1", + "state":"Texas", + "city":"Houston", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police trample protester with horse", + "description":null, + "links":[ + "https:\/\/twitter.com\/vikthewild\/status\/1266538354939756544", + "https:\/\/abc13.com\/hpd-uns-over-girl-police-on-horse-tramples-protester-george-floyd\/6223240\/" + ], + "data":null, + "geocoding":{ + "lat":"29.7604267", + "long":"-95.3698028" + } + }, + { + "id":"b4714df0-aa88-11ea-8bc3-c335065c1649", + "pb_id":"tx-houston-2", + "state":"Texas", + "city":"Houston", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Officers shove a woman to the pavement", + "description":null, + "links":[ + "https:\/\/twitter.com\/AbkTrauma\/status\/1266511972524269569" + ], + "data":null, + "geocoding":{ + "lat":"29.7604267", + "long":"-95.3698028" + } + }, + { + "id":"b471a4a0-aa88-11ea-a92c-1b7e644befd8", + "pb_id":"tx-houston-3", + "state":"Texas", + "city":"Houston", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Officer pushs protestor that is filming", + "description":null, + "links":[ + "https:\/\/twitter.com\/DomSkyeRN\/status\/1270185401060294656" + ], + "data":null, + "geocoding":{ + "lat":"29.7604267", + "long":"-95.3698028" + } + }, + { + "id":"b471f8a0-aa88-11ea-9150-95882e6e15b8", + "pb_id":"tx-sanantonio-2", + "state":"Texas", + "city":"San Antonio", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police shoot man filming them with what were allegedly rubber bullets", + "description":null, + "links":[ + "https:\/\/www.reddit.com\/r\/PublicFreakout\/comments\/gu3s6j\/police_shoots_protestor_for_no_reason\/", + "https:\/\/tuckbot.tv\/#\/watch\/gu3s6j", + "https:\/\/twitter.com\/chadloder\/status\/1267124991809609728" + ], + "data":null, + "geocoding":{ + "lat":"29.4241219", + "long":"-98.4936282" + } + }, + { + "id":"b473afc0-aa88-11ea-aaf5-dbe3199cb6b3", + "pb_id":"dc-dc-11", + "state":"Washington DC", + "city":"DC", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Police tear gas protesters outside of Lafayette Square", + "description":null, + "links":[ + "https:\/\/twitter.com\/i\/status\/1267298316141899780", + "https:\/\/twitter.com\/i\/status\/1267283580474085378" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"b4777880-aa88-11ea-ba34-7fbb3d05b7c1", + "pb_id":"dc-dc-9", + "state":"Washington DC", + "city":"DC", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Law enforcement officers fire rubber bullets into crowd, pepper-spray kneeling protestor and CNN crew", + "description":null, + "links":[ + "https:\/\/twitter.com\/MarkIronsMedia\/status\/1268046417865715713", + "https:\/\/twitter.com\/MarkIronsMedia\/status\/1268062053182443522", + "https:\/\/twitter.com\/gifdsports\/status\/1268041853196275712" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"b4782dc0-aa88-11ea-85e7-f5a515dfe22c", + "pb_id":"dc-dc-10", + "state":"Washington DC", + "city":"DC", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Law enforcement officers throw stinger grenades at peaceful protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/greg_doucette\/status\/1268297598856765441", + "https:\/\/twitter.com\/greg_doucette\/status\/1268297598856765441" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"b47a33a0-aa88-11ea-ab65-2f4621785243", + "pb_id":"il-chicago-1", + "state":"Illinois", + "city":"Chicago", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police pull down and assault a protestor", + "description":null, + "links":[ + "https:\/\/twitter.com\/alyssa_taylor45\/status\/1266895002904539137?s=20" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"b47b2210-aa88-11ea-bb4e-a71122570e8b", + "pb_id":"il-chicago-11", + "state":"Illinois", + "city":"Chicago", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police remove badges", + "description":null, + "links":[ + "https:\/\/old.reddit.com\/r\/PublicFreakout\/comments\/gtmbmh\/cops_remove_badges_minutes_before_assault\/" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"b47ca120-aa88-11ea-8cb2-2dbcea13acfa", + "pb_id":"il-chicago-10", + "state":"Illinois", + "city":"Chicago", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Officer covers badge", + "description":null, + "links":[ + "https:\/\/twitter.com\/KyleWilkins\/status\/1267268393809387520\/photo\/1" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"b47ceae0-aa88-11ea-a0b6-0910a9360a4e", + "pb_id":"il-chicago-13", + "state":"Illinois", + "city":"Chicago", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Officers are missing badges", + "description":null, + "links":[ + "https:\/\/twitter.com\/CHICAGOCREATUR1\/status\/1268607315902697478", + "https:\/\/twitter.com\/helllucinate\/status\/1267237866935136258", + "https:\/\/twitter.com\/trashrascal\/status\/1268669040312147969" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"b47e3c10-aa88-11ea-9f47-13ad4ed4ead0", + "pb_id":"il-chicago-12", + "state":"Illinois", + "city":"Chicago", + "date":"2020-06-02T00:00:00.000000Z", + "title":"Police grab protester and throw into brick wall", + "description":null, + "links":[ + "https:\/\/twitter.com\/ChrisDitton\/status\/1267675836892708864" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"b47e8b60-aa88-11ea-989a-d1a2453eaf76", + "pb_id":"il-chicago-9", + "state":"Illinois", + "city":"Chicago", + "date":"2020-06-03T00:00:00.000000Z", + "title":"Police hit several protesters with batons", + "description":null, + "links":[ + "https:\/\/twitter.com\/TomSchuba\/status\/1268312957752160257" + ], + "data":null, + "geocoding":{ + "lat":"41.8781136", + "long":"-87.6297982" + } + }, + { + "id":"b47fa760-aa88-11ea-a61b-f5f06c52736c", + "pb_id":"co-denver-1", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-28T00:00:00.000000Z", + "title":"Reporter shot with multiple pepper balls", + "description":null, + "links":[ + "https:\/\/www.denverpost.com\/2020\/05\/29\/denver-post-photographer-pepper-balls-george-floyd-protest\/" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + }, + { + "id":"b4843340-aa88-11ea-83e6-15d3090a4ba8", + "pb_id":"va-fairfax-1", + "state":"Virginia", + "city":"Fairfax", + "date":"2020-06-05T00:00:00.000000Z", + "title":"Officer repeatedly uses stun gun on suspect who said he couldn't breathe", + "description":null, + "links":[ + "https:\/\/ktla.com\/news\/nationworld\/a-virginia-police-officer-faces-charges-for-use-of-stun-gun-on-a-black-man\/", + "https:\/\/forthuntherald.com\/mount-vernon-police-officer-who-forcefully-apprehended-a-black-man-charged-with-assault-battery\/", + "https:\/\/www.youtube.com\/watch?v=MjFEDlTCKGE", + "https:\/\/www.washingtonpost.com\/local\/public-safety\/fairfax-county-police-officer-charged-after-using-stun-gun-on-black-man-without-provocation-police-say\/2020\/06\/07\/4e7b4a90-a858-11ea-b619-3f9133bbb482_story.html" + ], + "data":null, + "geocoding":{ + "lat":"38.8462236", + "long":"-77.3063733" + } + }, + { + "id":"c0a0a980-aaad-11ea-8534-094140aabbb0", + "pb_id":"ca-sandiego-3", + "state":"California", + "city":"San Diego", + "date":"2020-05-31T00:00:00.000000Z", + "title":"Woman shot in the face with a rubber bullet", + "description":null, + "links":[ + "https:\/\/twitter.com\/chadloder\/status\/1267290221562871809", + "https:\/\/twitter.com\/MarajYikes\/status\/1267030131563827200" + ], + "data":null, + "geocoding":{ + "lat":"32.7157380", + "long":"-117.1610838" + } + }, + { + "id":"c0aa66b0-aaad-11ea-8be6-9d7bbb5aeab0", + "pb_id":"ca-sanjose-4", + "state":"California", + "city":"San Jose", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police knocks phone out of protestor's hand; riot control measures follow", + "description":null, + "links":[ + "https:\/\/twitter.com\/itssdelilahh\/status\/1266575145537163269" + ], + "data":null, + "geocoding":{ + "lat":"37.3382082", + "long":"-121.8863286" + } + }, + { + "id":"c0b64320-aaad-11ea-9ab7-6b571b148715", + "pb_id":"ia-desmoines-6", + "state":"Iowa", + "city":"Des Moines", + "date":"2020-06-04T00:00:00.000000Z", + "title":"Police arrest a nonviolent Black cyclist at a BLM supply drop-off event", + "description":null, + "links":[ + "https:\/\/twitter.com\/DesMoinesBLM\/status\/1268710416219242496?s=19&fbclid=IwAR3z0SHL6ULykmUX_V6Um-nOHiRQACj-r9XDDmvtIc-o5D10zVi9_3OTVaE" + ], + "data":null, + "geocoding":{ + "lat":"41.5868353", + "long":"-93.6249593" + } + }, + { + "id":"c0b94660-aaad-11ea-9e59-8d88f246a922", + "pb_id":"nv-lasvegas-4", + "state":"Nevada", + "city":"Las Vegas", + "date":"2020-05-29T00:00:00.000000Z", + "title":"Police shove numerous protestors to the ground", + "description":null, + "links":[ + "https:\/\/twitter.com\/bridgetkbennett\/status\/1266561128185819136" + ], + "data":null, + "geocoding":{ + "lat":"36.1699412", + "long":"-115.1398296" + } + }, + { + "id":"c0cb5a80-aaad-11ea-ade4-b30c90d125f4", + "pb_id":"ny-newyorkcity-27", + "state":"New York", + "city":"New York City", + "date":"2020-05-31T00:00:00.000000Z", + "title":"NYPD denies 6th amendment rights to protestors", + "description":null, + "links":[ + "https:\/\/twitter.com\/GoodCallNYC\/status\/1267128759951523846" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"c0cc5900-aaad-11ea-90df-b16a74f53ff7", + "pb_id":"ny-newyorkcity-28", + "state":"New York", + "city":"New York City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Street medic is arrested", + "description":null, + "links":[ + "https:\/\/twitter.com\/PNickCurran\/status\/1266966295653777408" + ], + "data":null, + "geocoding":{ + "lat":"40.7127753", + "long":"-74.0059728" + } + }, + { + "id":"c0d96460-aaad-11ea-a3db-8335e3b1eaeb", + "pb_id":"mi-grandrapids-2", + "state":"Michigan", + "city":"Grand Rapids", + "date":"1900-01-01T00:00:00.000000Z", + "title":"Law enforcement push and shove a crowd of protesters.", + "description":null, + "links":[ + "https:\/\/twitter.com\/DJR2C2\/status\/1267006669583720448", + "https:\/\/twitter.com\/sparrowsongs_\/status\/1266948928966139904" + ], + "data":null, + "geocoding":{ + "lat":"42.9633599", + "long":"-85.6680863" + } + }, + { + "id":"c0dc8290-aaad-11ea-8e39-c5afddef7514", + "pb_id":"ok-oklahomacity-1", + "state":"Oklahoma", + "city":"Oklahoma City", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Person with hands up struck in chest by projectile", + "description":null, + "links":[ + "https:\/\/twitter.com\/BruceBrownJr\/status\/1266979654499479552" + ], + "data":null, + "geocoding":{ + "lat":"35.4675602", + "long":"-97.5164276" + } + }, + { + "id":"c1168880-aaad-11ea-9c68-efbaa19f5367", + "pb_id":"oh-cleveland-3", + "state":"Ohio", + "city":"Cleveland", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Police injure numerous protestors with rubber bullets", + "description":null, + "links":[ + "https:\/\/twitter.com\/NEO_Scan\/status\/1266848874163027970", + "https:\/\/www.cleveland.com\/court-justice\/2020\/06\/cleveland-police-gave-order-for-george-floyd-protesters-to-disperse-legal-observers-witnesses-said-no-one-heard-it.html", + "https:\/\/twitter.com\/AntonioAlan216\/status\/1266877225707745280" + ], + "data":null, + "geocoding":{ + "lat":"41.4993200", + "long":"-81.6943605" + } + }, + { + "id":"c12f2150-aaad-11ea-9f9e-f77ce4c75412", + "pb_id":"tx-dallas-5", + "state":"Texas", + "city":"Dallas", + "date":"2020-06-01T00:00:00.000000Z", + "title":"Police fire rubber bullet on peaceful protestor", + "description":null, + "links":[ + "https:\/\/twitter.com\/bubbaprog\/status\/1267542878118727680", + "https:\/\/twitter.com\/elias_valverde\/status\/1267550636876447747" + ], + "data":null, + "geocoding":{ + "lat":"32.7766642", + "long":"-96.7969879" + } + }, + { + "id":"c1358e60-aaad-11ea-8907-e7bafa9a9b4a", + "pb_id":"dc-dc-12", + "state":"Washington DC", + "city":"DC", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Riot police fire tear gas round at protestor", + "description":null, + "links":[ + "https:\/\/twitter.com\/ALT_uscis\/status\/1266939755381633024" + ], + "data":null, + "geocoding":{ + "lat":"38.9071923", + "long":"-77.0368707" + } + }, + { + "id":"c15189d0-aaad-11ea-b835-a3ac46d12e10", + "pb_id":"co-denver-14", + "state":"Colorado", + "city":"Denver", + "date":"2020-05-30T00:00:00.000000Z", + "title":"Bystander claims police shoot him in the eye", + "description":null, + "links":[ + "https:\/\/www.denverpost.com\/2020\/06\/09\/denver-protest-bystander-blinded\/", + "https:\/\/denver.cbslocal.com\/2020\/06\/08\/denver-protests-george-floyd-jax-feldmann-denver-police-foam-bullet\/" + ], + "data":null, + "geocoding":{ + "lat":"39.7392358", + "long":"-104.9902510" + } + } + ], + "meta":{ + "about":[ + "8 minutes and 46 seconds is the length of time associated with the killing of George Floyd,", + "who died in police custody after police officer Derek Chauvin knelt on his neck for roughly eight minutes.", + "This repo provides and API and archives acts of assault by public servants to American Citizens during non-violent acts of protest." + ], + "more":[ + "\u2022 This project does not condone acts aggression of any parties", + "\u2022 This project is meant to enable others to share their voice and stand-up against acts of violence by public servants", + "\u2022 This project intends to fight censorship by encouraging all to get involved and mirror this data, download the media, and fight for progress", + "\u2022 This project is not anti-police", + "\u2022 This project is a public work dedicated to all of humanity, regardless of race, creed, or borders." + ], + "get_involved":{ + "reddit":"https:\/\/www.reddit.com\/r\/2020PoliceBrutality\/", + "collaboration":"https:\/\/github.com\/2020PB\/police-brutality" + } + } + } \ No newline at end of file From 842d899bb31f7b5b1b0f7853130f4a8c270e9b0e Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Tue, 9 Jun 2020 23:41:20 -0400 Subject: [PATCH 10/32] [UPDATE] #63 updated model classes and object type to match `https://api.846policebrutality.com/` response Added additional converters for new data types like date (required for #37) --- android-app/.idea/codeStyles/Project.xml | 5 ++ android-app/app/build.gradle | 2 + .../4.json | 85 ++++++++++++++++++ .../main/assets/all_locations_fallback.json | 2 +- .../policebrutality/data/AppDatabase.kt | 2 +- .../policebrutality/data/Converters.kt | 38 +++++++- .../policebrutality/data/IncidentDao.kt | 2 +- .../data/OffsetDateTimeConverter.java | 87 +++++++++++++++++++ .../policebrutality/data/model/GeoCoding.kt | 24 +++++ .../policebrutality/data/model/Incident.kt | 50 ++++++----- .../data/model/IncidentsSource.kt | 13 ++- .../worker/SeedDatabaseWorker.kt | 9 +- .../res/layout/list_item_incident_core.xml | 2 +- 13 files changed, 286 insertions(+), 35 deletions(-) create mode 100644 android-app/app/schemas/com.blacklivesmatter.policebrutality.data.AppDatabase/4.json create mode 100644 android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/OffsetDateTimeConverter.java create mode 100644 android-app/app/src/main/java/com/blacklivesmatter/policebrutality/data/model/GeoCoding.kt diff --git a/android-app/.idea/codeStyles/Project.xml b/android-app/.idea/codeStyles/Project.xml index b93b279..1dd7d82 100644 --- a/android-app/.idea/codeStyles/Project.xml +++ b/android-app/.idea/codeStyles/Project.xml @@ -1,6 +1,11 @@ +